From f5d2c5124c2728d14d4c349c9287edb00f9eb633 Mon Sep 17 00:00:00 2001 From: Callum Styan Date: Sun, 13 Jul 2025 17:02:50 -0700 Subject: [PATCH] for expectEqual the first param is expected Signed-off-by: Callum Styan --- exercises/102_testing.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: