diff --git a/tests/test_try.nim b/tests/test_try.nim index 0657b38..4634453 100644 --- a/tests/test_try.nim +++ b/tests/test_try.nim @@ -107,7 +107,7 @@ test "match with :=? works": var x: string match range[1..5](4): - of 1, 2, 3: x = "below or equal to three" + of 1, in (2..3): x = "below or equal to three" of 4, 5: x = "above three" check x == "above three"