Merge pull request #127656 from jdtuhui/testifylint/formatter@test/utils

fix: enable formatter rule from testifylint in module test/utils
This commit is contained in:
Kubernetes Prow Robot
2024-10-23 07:26:52 +01:00
committed by GitHub

View File

@@ -61,5 +61,5 @@ func TestCSIImageConfigs(t *testing.T) {
assert.NotEmpty(t, config.version, "version")
actualImages.Insert(config.name)
}
assert.ElementsMatch(t, expectedImages, actualImages.UnsortedList(), "found these images: %+v", configs)
assert.ElementsMatchf(t, expectedImages, actualImages.UnsortedList(), "found these images: %+v", configs)
}