We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 472e327 commit 8835109Copy full SHA for 8835109
tests/test_cli.py
@@ -26,7 +26,7 @@ def test_show_version():
26
actual_rows = []
27
for line in verbose_result.stdout.split("\n"):
28
maybe_row = list(map(str.strip, filter(None, line.split("│"))))
29
- if len(maybe_row) > 1:
+ if len(maybe_row) > 1 and maybe_row != ["Package", "Version", "Language"]:
30
actual_rows.append(maybe_row)
31
32
expected_rows = [["idom", idom.__version__, "Python"]] + [
0 commit comments