mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
remove unused arg in test runner start (#2019)
Signed-off-by: ollevche <ollevche@gmail.com>
This commit is contained in:
parent
d33ccba2d2
commit
485be411c0
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user