Skip to content

Commit

Permalink
ducktape/service/redpanda: Tweak expected storage checks
Browse files Browse the repository at this point in the history
The schema registry adds `kafka/_schemas` topic.

Signed-off-by: Ben Pope <ben@vectorized.io>
  • Loading branch information
BenPope committed May 28, 2021
1 parent bd2b59f commit 5403997
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/rptest/services/redpanda.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,9 @@ def start(self):
self.logger.info("Verifying storage is in expected state")
storage = self.storage()
for node in storage.nodes:
assert set(node.ns) == {"redpanda"}
assert set(node.ns["redpanda"].topics) == {"controller", "kvstore"}
assert set(node.ns).issuperset({"redpanda"})
assert set(node.ns["redpanda"].topics).issuperset(
{"controller", "kvstore"})

self._create_initial_topics()

Expand Down

0 comments on commit 5403997

Please sign in to comment.