remove unused arg in test runner start (#2019)

Signed-off-by: ollevche <ollevche@gmail.com>
This commit is contained in:
Oleksandr Levchenkov 2024-09-25 16:00:13 +03:00 committed by GitHub
parent d33ccba2d2
commit 485be411c0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -284,7 +284,7 @@ func (c *TestCommand) Run(rawArgs []string) int {
defer stop()
defer cancel()
runner.Start(variables)
runner.Start()
}()
// Wait for the operation to complete, or for an interrupt to occur.
@ -365,7 +365,7 @@ type TestSuiteRunner struct {
Verbose bool
}
func (runner *TestSuiteRunner) Start(globals map[string]backend.UnparsedVariableValue) {
func (runner *TestSuiteRunner) Start() {
var files []string
for name := range runner.Suite.Files {
files = append(files, name)