Skip to content

Commit 38362d3

Browse files
authored
test: fix conflicting merge issue (#168)
1 parent bf21d8c commit 38362d3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

internal/controllers/keycloakrealm_controller_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1657,7 +1657,8 @@ var _ = Describe("KeycloakRealm controller", func() {
16571657

16581658
beforeUpdateStatus := reconciledInstance.Status
16591659

1660-
user.Spec.User.Enabled = true
1660+
enabled := true
1661+
user.Spec.User.Enabled = &enabled
16611662
Expect(k8sClient.Update(ctx, user)).Should(Succeed())
16621663

16631664
Eventually(func() bool {

0 commit comments

Comments
 (0)