Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
Signed-off-by: Jacob Weinstock <jakobweinstock@gmail.com>
  • Loading branch information
jacobweinstock committed May 10, 2023
1 parent 4b6b31e commit 40bb987
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions controllers/job_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,14 @@ func TestJobReconcile(t *testing.T) {
"failure unknown machine": {
machine: &v1alpha1.Machine{},
secret: createSecret(),
job: createJob("test", createMachine()), shouldErr: true},
job: createJob("test", createMachine()), shouldErr: true,
},
"success power on job": {
machine: createMachine(),
secret: createSecret(),
job: createJob("test", createMachine(), getAction("PowerOn")),
testAll: true},
testAll: true,
},
}

for name, tt := range tests {
Expand Down

0 comments on commit 40bb987

Please sign in to comment.