We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3f0484 commit 9c9a5c2Copy full SHA for 9c9a5c2
database/sqlserver/sqlserver_test.go
@@ -91,7 +91,7 @@ func isReady(ctx context.Context, c dktest.ContainerInfo) bool {
91
92
func SkipIfUnsupportedArch(t *testing.T, c dktest.ContainerInfo) {
93
if strings.Contains(c.ImageName, "mssql") && !strings.HasPrefix(runtime.GOARCH, "amd") {
94
- t.Skip(fmt.Sprintf("Image %s is not supported on arch %s", c.ImageName, runtime.GOARCH))
+ t.Skipf("Image %s is not supported on arch %s", c.ImageName, runtime.GOARCH)
95
}
96
97
0 commit comments