Skip to content

Commit 5af2baa

Browse files
committed
minor string formatting update in search_test.go
1 parent 5a30a69 commit 5af2baa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

search_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func TestGlyphSearchCodePointsSingle(t *testing.T) {
2828
if len(response) == 0 {
2929
t.Errorf("[FAIL] unicodeSearch did not return a value (len = 0)")
3030
} else if !strings.Contains(response, c.expected) {
31-
t.Errorf("[FAIL] Unicode code point '%s' yielded response %s, not expected response %s", c.unihex, response[0], c.expected)
31+
t.Errorf("[FAIL] Unicode code point '%s' yielded response %v, not expected response %s", c.unihex, response[0], c.expected)
3232
}
3333
}
3434
}
@@ -58,7 +58,7 @@ func TestGlyphSearchCodePointsSingleWithNewline(t *testing.T) {
5858
if len(response) == 0 {
5959
t.Errorf("[FAIL] unicodeSearch did not return a value (len = 0)")
6060
} else if !strings.Contains(response, c.expected) {
61-
t.Errorf("[FAIL] Unicode code point '%s' yielded response %s, not expected response %s", c.unihex, response[0], c.expected)
61+
t.Errorf("[FAIL] Unicode code point '%s' yielded response %v, not expected response %s", c.unihex, response[0], c.expected)
6262
}
6363
}
6464
}

0 commit comments

Comments
 (0)