From b81477c1d36ed02fb7b483505f979281601fd437 Mon Sep 17 00:00:00 2001 From: mutantmonkey Date: Mon, 28 Sep 2015 23:03:40 -0700 Subject: [PATCH] fix go vet complaint in torrent_test.go --- torrent_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torrent_test.go b/torrent_test.go index dff738b..9b96e22 100644 --- a/torrent_test.go +++ b/torrent_test.go @@ -36,7 +36,7 @@ func TestCreateTorrent(t *testing.T) { tracker := fmt.Sprintf("%sselif/%s", Config.siteURL, fileName) if decoded.UrlList[0] != tracker { - t.Fatal("First entry in URL list was %s, expected %s", decoded.UrlList[0], tracker) + t.Fatalf("First entry in URL list was %s, expected %s", decoded.UrlList[0], tracker) } }