summaryrefslogtreecommitdiff
path: root/tests/test_cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_cli.py')
-rw-r--r--tests/test_cli.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/test_cli.py b/tests/test_cli.py
index 884e676..684c2e7 100644
--- a/tests/test_cli.py
+++ b/tests/test_cli.py
@@ -89,9 +89,7 @@ def test_list(capsys, config_file):
89 main(['-c', f'{config_file}', '-l']) 89 main(['-c', f'{config_file}', '-l'])
90 assert exit_info.type == SystemExit 90 assert exit_info.type == SystemExit
91 assert exit_info.value.code == 0 91 assert exit_info.value.code == 0
92 assert capsys.readouterr().out.strip() == ( 92 assert capsys.readouterr().out.strip() == f'dev{os.linesep}secret'
93 f'default{os.linesep}dev{os.linesep}secret'
94 )
95 93
96 94
97def test_help(capsys): 95def test_help(capsys):