summaryrefslogtreecommitdiffstats
path: root/commands/server_test.go
diff options
context:
space:
mode:
authorbep <bjorn.erik.pedersen@gmail.com>2015-03-06 14:56:44 +0100
committerbep <bjorn.erik.pedersen@gmail.com>2015-03-06 15:25:19 +0100
commit103ea842f820492b88af370e248613c051c96eac (patch)
treec0e59bee85f61f4f498ef2dbcc6bdf9dfe5f9715 /commands/server_test.go
parentc4c19ad303cb11616a7291bdbeec997e59b6d24e (diff)
Fix errors reported by Go Vet
Diffstat (limited to 'commands/server_test.go')
-rw-r--r--commands/server_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/server_test.go b/commands/server_test.go
index 1e1343d44..57a500859 100644
--- a/commands/server_test.go
+++ b/commands/server_test.go
@@ -34,7 +34,7 @@ func TestFixUrl(t *testing.T) {
serverPort = test.Port
result, err := fixUrl(BaseUrl)
if err != nil {
- t.Errorf("Test #%d %s: unexpected error %s", err)
+ t.Errorf("Test #%d %s: unexpected error %s", i, test.TestName, err)
}
if result != test.Result {
t.Errorf("Test #%d %s: expected %q, got %q", i, test.TestName, test.Result, result)