Skip to content
This repository was archived by the owner on Jul 10, 2025. It is now read-only.

Commit 637385b

Browse files
committed
use false pattern match since it does not warn anymore
1 parent bd95939 commit 637385b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests.gr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ let mut totalErr = 0
1010
let check = (a, b, msg: String) => {
1111
match (a == b) {
1212
true => Ok(String.concat("✅ PASS\t\t", msg)),
13-
_ => {
13+
false => {
1414
totalErr += 1
1515
print("===== Expected: =====")
1616
print(a)

0 commit comments

Comments
 (0)