From a5622fd5a84a6acfce9ec25c84f1e3b21afbb286 Mon Sep 17 00:00:00 2001 From: Adam Wheeler Date: Fri, 24 Oct 2025 12:58:11 -0400 Subject: [PATCH] update patch for 102 to match --- patches/patches/102_testing.patch | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/patches/patches/102_testing.patch b/patches/patches/102_testing.patch index 9695b24..6d18bf6 100644 --- a/patches/patches/102_testing.patch +++ b/patches/patches/102_testing.patch @@ -1,18 +1,18 @@ ---- exercises/102_testing.zig 2023-10-03 22:15:22.125574535 +0200 -+++ answers/102_testing.zig 2023-10-05 20:04:07.302771500 +0200 -@@ -83,7 +83,7 @@ - // an error that you need - // to correct. +--- exercises/102_testing.zig 2025-10-24 12:54:56 ++++ answers/102_testing.zig 2025-10-24 12:56:33 +@@ -71,7 +71,7 @@ + // The corresponding test is not much different from the previous one. Except + // that it contains an error that you need to correct. test "sub" { - try testing.expect(sub(10, 5) == 6); + try testing.expect(sub(10, 5) == 5); try testing.expect(sub(3, 1.5) == 1.5); } -@@ -108,5 +108,5 @@ - // Now we test if the function returns an error - // if we pass a zero as denominator. - // But which error needs to be tested? +@@ -92,5 +92,5 @@ + + // Now we test if the function returns an error if we pass a zero as + // denominator. But which error needs to be tested? - try testing.expectError(error.???, divide(15, 0)); + try testing.expectError(error.DivisionByZero, divide(15, 0)); }