We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f508902 commit 84f5305Copy full SHA for 84f5305
test/e2e/remote/suspend_test.go
@@ -56,7 +56,7 @@ func TestSuspendServices(t *testing.T) {
56
// assert that the cache service is suspended
57
svc, err := ManagementOverRestRequest(&c, "/management/coherence/cluster/services/PartitionedCache")
58
g.Expect(err).NotTo(HaveOccurred())
59
- g.Expect(svc["quorumStatus"]).To(BeEquivalentTo([]interface{}{"Suspended"}))
+ g.Expect(svc["quorumStatus"]).To(ContainElement("Suspended"))
60
61
// remove the test finalizer which should then let everything be deleted
62
err = removeAllFinalizers(&c)
0 commit comments