Pass External Storage label parameters as individual arguments in framework variadic function

This commit is contained in:
Peter Schuurman 2023-11-07 22:17:36 -08:00
parent e4b74dd12f
commit e4fdc96c18

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
}