fix: enable formatter rule from testifylint in module test/utils

This commit is contained in:
tuhui1 2024-09-26 18:00:12 +08:00
parent 996e674ea7
commit c5e951946e

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)
}