From da4ba5ae346fc8cd0e55a4a3e25ffcf8793ae065 Mon Sep 17 00:00:00 2001 From: metagn <10591326+metagn@users.noreply.github.com> Date: Tue, 11 Apr 2023 15:59:03 +0300 Subject: [PATCH] procs and for left --- tests/test_try.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"