Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
mabulgu committed Nov 2, 2023
1 parent 35e4639 commit 95990ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_kfk.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ def test_kfk_version(self, mock_setup):

result = self.runner.invoke(kfk, ["--version"])
assert result.exit_code == 0
expected_version = f"""CLI Version:
{pkg_resources.require("strimzi-kafka-cli")[0].version}
cli_version = pkg_resources.require("strimzi-kafka-cli")[0].version
expected_version = f"""CLI Version: {cli_version}
Strimzi Version: {STRIMZI_VERSION}
Kubectl Version: {KUBECTL_VERSION}
"""
Expand Down

0 comments on commit 95990ad

Please sign in to comment.