Skip to content

Commit

Permalink
tests: fixed error message in cluster config test
Browse files Browse the repository at this point in the history
Signed-off-by: Michał Maślanka <michal@redpanda.com>
  • Loading branch information
mmaslankaprv committed Jul 4, 2024
1 parent 90556f1 commit 77b4b72
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/rptest/tests/cluster_config_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,9 @@ def _assert_version_msg():
return f"Not all the nodes are at the same config_version: {config_versions}"

# wait for config_version to be the same on all the nodes
wait_until(_check_version, timeout_sec=5, err_msg=_assert_version_msg)
wait_until(_check_version,
timeout_sec=5,
err_msg=_assert_version_msg())

# we expect that key is at expect_value by now
values = {
Expand Down

0 comments on commit 77b4b72

Please sign in to comment.