Skip to content

Commit

Permalink
⬆ upgrade to go 1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
abahmed committed Feb 7, 2024
1 parent 5b7afc5 commit d8b01b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions util/util_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ func TestJsonEscape(t *testing.T) {
},
{
Input: "te\bst",
Output: "te\\u0008st",
Output: "te\\bst",
},
{
Input: "\b",
Output: "\\u0008",
Output: "\\b",
},
{
Input: "\"",
Expand Down

0 comments on commit d8b01b8

Please sign in to comment.