Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wpjunior committed Apr 15, 2021
1 parent 5d8597c commit 79765fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1680,7 +1680,7 @@ func TestReconcile(t *testing.T) {
},
}
reconciler := newRpaasInstanceReconciler(rpaas, plan, defaultFlavor)
result, err := reconciler.Reconcile(reconcile.Request{NamespacedName: types.NamespacedName{Namespace: "default", Name: "my-instance"}})
result, err := reconciler.Reconcile(context.Background(), reconcile.Request{NamespacedName: types.NamespacedName{Namespace: "default", Name: "my-instance"}})
require.NoError(t, err)

assert.Equal(t, result, reconcile.Result{})
Expand Down

0 comments on commit 79765fd

Please sign in to comment.