From a88146083945d9496fc1f47c0a73a95c238e6f58 Mon Sep 17 00:00:00 2001 From: James Bardin Date: Wed, 25 Oct 2017 15:49:35 -0400 Subject: [PATCH] fix vet error in registry package --- registry/regsrc/friendly_host_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/regsrc/friendly_host_test.go b/registry/regsrc/friendly_host_test.go index 5ccac5b0d..740395bf6 100644 --- a/registry/regsrc/friendly_host_test.go +++ b/registry/regsrc/friendly_host_test.go @@ -116,7 +116,7 @@ func TestFriendlyHost(t *testing.T) { // Also verify that host compares equal with all the variants. if !gotHost.Equal(&FriendlyHost{Raw: tt.wantDisplay}) { - t.Fatalf("Equal() should be true for %s and %s", tt.wantHost, tt.wantValid) + t.Fatalf("Equal() should be true for %s and %t", tt.wantHost, tt.wantValid) } // FIXME: Do we need to accept normalized input?