Skip to content

Commit

Permalink
Fix Test race. (#303)
Browse files Browse the repository at this point in the history
  • Loading branch information
medinatiger authored and k8s-ci-robot committed Jun 7, 2018
1 parent 405008c commit 578ec1b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/controller/machine/machine_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ func TestMachine(t *testing.T) {
controller, shutdown := getController(config)
defer close(shutdown)
machineControllerReconcile(t, cs, controller, "default")
})
t.Run("machineControllerReconcileNonDefaultNameSpace", func(t *testing.T) {
controller, shutdown := getController(config)
defer close(shutdown)
machineControllerReconcile(t, cs, controller, "nondefault")
})
t.Run("machineControllerConcurrentReconcile", func(t *testing.T) {
Expand Down

0 comments on commit 578ec1b

Please sign in to comment.