Changing printf verb %s to %v in compose_test.go

This commit is contained in:
Abhishek 2017-06-20 09:53:24 +05:30
parent ee7961216f
commit 1401a39cbd

View File

@ -64,7 +64,7 @@ func TestLoadV3Ports(t *testing.T) {
}
if output[0] != expected {
t.Errorf("Expected %s, got %s", expected, output[0])
t.Errorf("Expected %v, got %v", expected, output[0])
}
}