Merge pull request #121790 from pwschuurman/fix-framework-test-describe

Pass External Storage label parameters as individual arguments in framework variadic function
This commit is contained in:
Kubernetes Prow Robot 2023-11-17 11:38:35 +01:00 committed by GitHub
commit c28c200918
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -174,7 +174,7 @@ func AddDriverDefinition(filename string) error {
args = append(args, func() {
storageframework.DefineTestSuites(driver, testsuites.CSISuites)
})
framework.Describe(args)
framework.Describe(args...)
return nil
}