diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_vgstash_cli.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_vgstash_cli.py b/tests/test_vgstash_cli.py index f81d119..02f0d81 100644 --- a/tests/test_vgstash_cli.py +++ b/tests/test_vgstash_cli.py @@ -108,7 +108,7 @@ def test_list_pretty(): print(result.output) assert result.exit_code == 0 assert result.output == '\n'.join(( - 'Title | System | Own | Progress', + 'Title | System | Own | Progress', '--------------------------------------------------------------------------------', 'Sonic the Hedgehog 2 | Genesis | | B', 'Vectorman | Genesis | | B', @@ -126,7 +126,7 @@ def test_list_pretty_smaller(): print(result.output) assert result.exit_code == 0 assert result.output == '\n'.join(( - 'Title | System | Own | Progress', + 'Title | System | Own | Progress', '------------------------------------------------------------', 'Sonic the Hedgehog 2 | Genesis | | B', 'Vectorman | Genesis | | B', @@ -144,7 +144,7 @@ def test_list_pretty_tiny(): print(result.output) assert result.exit_code == 0 assert result.output == '\n'.join(( - 'Title | System | Own | Progress', + 'Title | System | Own | Progress', '--------------------------------------------------', 'Sonic the Hedgehog 2 | Genesis | | B', 'Vectorman | Genesis | | B', @@ -176,7 +176,7 @@ def test_update(): print(list_result.output) assert list_result.exit_code == 0 assert list_result.output == "\n".join(( - 'Title | System | Own | Progress', + 'Title | System | Own | Progress', '----------------------------------------', 'Sonic the H | Genesis | | B', 'Vectorman 2 | Genesis | P | P', |