Remove unused name parameter in CreateCluster

This commit is contained in:
Nils Hanke 2022-11-15 13:28:14 +01:00 committed by Nils Hanke
parent b9b618a1f0
commit 158dfe0e2b
5 changed files with 8 additions and 10 deletions

View file

@ -129,7 +129,7 @@ func TestCreateCluster(t *testing.T) {
workingDir: constants.TerraformWorkingDir,
}
ip, err := c.CreateCluster(context.Background(), tc.provider, "test", tc.vars)
ip, err := c.CreateCluster(context.Background(), tc.provider, tc.vars)
if tc.wantErr {
assert.Error(err)