aboutsummaryrefslogtreecommitdiff
path: root/headers_test.go
diff options
context:
space:
mode:
authorStefan Majewsky <majewsky@gmx.net>2018-01-30 16:58:35 +0100
committerStefan Majewsky <majewsky@gmx.net>2018-01-30 16:58:35 +0100
commit533e57b03a5148acb054ceeaab01689bed94a580 (patch)
treeecbb83aa729c0c2d1e88bb765a567b4aee7c3219 /headers_test.go
parenta2700ca5e57c6466e48c644da6a0c1c93e5ab70c (diff)
downloadgo-schwift-533e57b03a5148acb054ceeaab01689bed94a580.tar.gz
implement compileHeaders
Test is still failing though...
Diffstat (limited to 'headers_test.go')
-rw-r--r--headers_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/headers_test.go b/headers_test.go
index f00b166..62bc066 100644
--- a/headers_test.go
+++ b/headers_test.go
@@ -61,7 +61,7 @@ func expectUint64(t *testing.T, actual uint64, expected uint64) {
func expectString(t *testing.T, actual string, expected string) {
t.Helper()
if actual != expected {
- t.Errorf("expected value %d, got %d instead\n", expected, actual)
+ t.Errorf("expected value %q, got %q instead\n", expected, actual)
}
}