aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/tests/libexprtests.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/libexpr/tests/libexprtests.hh')
-rw-r--r--src/libexpr/tests/libexprtests.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/tests/libexprtests.hh b/src/libexpr/tests/libexprtests.hh
index 4f6915882..5bb5e66d3 100644
--- a/src/libexpr/tests/libexprtests.hh
+++ b/src/libexpr/tests/libexprtests.hh
@@ -123,7 +123,7 @@ namespace nix {
MATCHER_P(IsAttrsOfSize, n, fmt("Is a set of size [%1%]", n)) {
if (arg.type() != nAttrs) {
- *result_listener << "Expexted set got " << arg.type();
+ *result_listener << "Expected set got " << arg.type();
return false;
} else if (arg.attrs->size() != (size_t)n) {
*result_listener << "Expected a set with " << n << " attributes but got " << arg.attrs->size();