Skip to content

Commit

Permalink
[fix][test] InactiveTopicDeleteTest#testDeleteWhenNoSubscriptionsWith…
Browse files Browse the repository at this point in the history
…MultiConfig (apache#19436)

Co-authored-by: tison <wander4096@gmail.com>
  • Loading branch information
labuladong and tisonkun authored Jun 13, 2023
1 parent 2a69df5 commit 63f1505
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,8 @@ public void testDeleteWhenNoSubscriptionsWithMultiConfig() throws Exception {
}
Awaitility.await()
.untilAsserted(() -> Assert.assertFalse(admin.topics().getList(namespace).contains(topic)));
Assert.assertFalse(admin.topics().getList(namespace3).contains(topic3));
Awaitility.await()
.untilAsserted(() -> Assert.assertFalse(admin.topics().getList(namespace3).contains(topic3)));
}

@Test
Expand Down

0 comments on commit 63f1505

Please sign in to comment.