diff options
author | zlg <zlg@zlg.space> | 2018-10-12 17:50:53 -0700 |
---|---|---|
committer | zlg <zlg@zlg.space> | 2018-10-12 17:50:53 -0700 |
commit | c7d09704fb911d59139aff5ad0ab4c35a2ed9493 (patch) | |
tree | 5d8b04ae93a69d3fca9dd0c6a4a747e5d431a163 /tests | |
parent | Bump to 0.3beta1 for PyPI (diff) | |
download | vgstash-c7d09704fb911d59139aff5ad0ab4c35a2ed9493.tar.gz vgstash-c7d09704fb911d59139aff5ad0ab4c35a2ed9493.tar.bz2 vgstash-c7d09704fb911d59139aff5ad0ab4c35a2ed9493.tar.xz vgstash-c7d09704fb911d59139aff5ad0ab4c35a2ed9493.zip |
cli: Add zero-game import/export messages
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', |