Skip to content

Commit 9d4cb09

Browse files
committed
fix ChannelGroupTest
1 parent 692d25c commit 9d4cb09

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

java/srcTest/com/pubnub/api/ChannelGroupTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static void cleanup() throws InterruptedException, JSONException {
3030
@Before
3131
public void setUp() {
3232
pubnub.setCacheBusting(false);
33-
channelGroup = UUID.randomUUID().toString().substring(0, 8);
33+
channelGroup = "jtest-" + UUID.randomUUID().toString().substring(0, 8);
3434
channelNamespace = "jtest-namespace";
3535
}
3636

@@ -290,7 +290,6 @@ public void testGetAllChannelGroupNames() throws InterruptedException, JSONExcep
290290

291291
assertJSONArrayHas(group1, groups);
292292
assertJSONArrayHas(group2, groups);
293-
assertJSONArrayHasNo("jtest_group3", groups);
294293
}
295294

296295
@Test

0 commit comments

Comments
 (0)