summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--exercises/102_testing.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/102_testing.zig b/exercises/102_testing.zig
index 89a0ee8..248f5b5 100644
--- a/exercises/102_testing.zig
+++ b/exercises/102_testing.zig
@@ -58,7 +58,7 @@ test "add" {
// Another way to perform this test
// is as follows:
- try testing.expectEqual(add(41, 1), 42);
+ try testing.expectEqual(42, add(41, 1));
// This time a test with the addition
// of a negative number: