Skip to content

Commit 8835109

Browse files
committed
fix cli test on windows
1 parent 472e327 commit 8835109

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def test_show_version():
2626
actual_rows = []
2727
for line in verbose_result.stdout.split("\n"):
2828
maybe_row = list(map(str.strip, filter(None, line.split("│"))))
29-
if len(maybe_row) > 1:
29+
if len(maybe_row) > 1 and maybe_row != ["Package", "Version", "Language"]:
3030
actual_rows.append(maybe_row)
3131

3232
expected_rows = [["idom", idom.__version__, "Python"]] + [

0 commit comments

Comments
 (0)