Skip to content

Commit

Permalink
Line tests back up with current functionality.
Browse files Browse the repository at this point in the history
  • Loading branch information
Miles-Garnsey committed Apr 16, 2024
1 parent c862e0c commit 8f8987d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/replication/secret_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ func verifySecretIsDeletedComplicated(t *testing.T, ctx context.Context, f *fram
if err := localClient.Get(ctx, types.NamespacedName{Name: "targetprefix-original-secret", Namespace: remoteNamespaceLocalCluster}, secret); err != nil {
return false
}
return secret.Labels["alwayshere"] == "true" && secret.Labels["dropme"] == "" && secret.Labels["addMe"] == "true" && secret.Labels["pickme"] == "true"
return secret.Labels["alwayshere"] == "true" && secret.Labels["dropme"] == "" && secret.Labels["addMe"] == "true" && secret.Labels["pickme"] == ""
}, timeout, interval)

t.Log("check that the secret was copied to remote namespace remote cluster")
Expand Down

0 comments on commit 8f8987d

Please sign in to comment.