From 930362b9f86cd0e5efc32f5ac9504e93e0de8f60 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Tue, 27 Sep 2016 20:01:51 +0300 Subject: [PATCH] go vet fix --- fasthttpadaptor/adaptor_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fasthttpadaptor/adaptor_test.go b/fasthttpadaptor/adaptor_test.go index 80c1948..801f21f 100644 --- a/fasthttpadaptor/adaptor_test.go +++ b/fasthttpadaptor/adaptor_test.go @@ -55,7 +55,7 @@ func TestNewFastHTTPHandler(t *testing.T) { t.Fatalf("unexpected contentLength %d. Expecting %d", r.ContentLength, expectedContentLength) } if len(r.TransferEncoding) != 1 || r.TransferEncoding[0] != expectedTransferEncoding { - t.Fatalf("unexpected transferEncoding %d. Expecting %d", r.TransferEncoding, expectedTransferEncoding) + t.Fatalf("unexpected transferEncoding %q. Expecting %q", r.TransferEncoding, expectedTransferEncoding) } if r.Host != expectedHost { t.Fatalf("unexpected host %q. Expecting %q", r.Host, expectedHost)