Skip to content

Commit

Permalink
Restore emojis that old grainfmt broke
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed Oct 12, 2021
1 parent 1c94d77 commit bd95939
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests.gr
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ let mut totalErr = 0

let check = (a, b, msg: String) => {
match (a == b) {
true => Ok(String.concat("\226\156\133 PASS\t\t", msg)),
true => Ok(String.concat(" PASS\t\t", msg)),
_ => {
totalErr += 1
print("===== Expected: =====")
print(a)
print("======= Got: ========")
print(b)
print("=====================")
Err(String.concat("\226\155\148\239\184\143 FAIL\t\t", msg))
Err(String.concat("⛔️ FAIL\t\t", msg))
},
}
}
Expand Down

0 comments on commit bd95939

Please sign in to comment.