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

Commit bd95939

Browse files
committed
Restore emojis that old grainfmt broke
1 parent 1c94d77 commit bd95939

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests.gr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ let mut totalErr = 0
99

1010
let check = (a, b, msg: String) => {
1111
match (a == b) {
12-
true => Ok(String.concat("\226\156\133 PASS\t\t", msg)),
12+
true => Ok(String.concat(" PASS\t\t", msg)),
1313
_ => {
1414
totalErr += 1
1515
print("===== Expected: =====")
1616
print(a)
1717
print("======= Got: ========")
1818
print(b)
1919
print("=====================")
20-
Err(String.concat("\226\155\148\239\184\143 FAIL\t\t", msg))
20+
Err(String.concat("⛔️ FAIL\t\t", msg))
2121
},
2222
}
2323
}

0 commit comments

Comments
 (0)