From 665ddb560e10e3dddc6ef9aa8933103c1c55207b Mon Sep 17 00:00:00 2001 From: Romain Dorgueil Date: Sat, 27 May 2017 16:10:14 +0200 Subject: [PATCH] Fix version test --- tests/test_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_commands.py b/tests/test_commands.py index 40a6ed5..280308d 100644 --- a/tests/test_commands.py +++ b/tests/test_commands.py @@ -76,4 +76,4 @@ def test_version(runner, capsys): out, err = capsys.readouterr() out = out.strip() assert out.startswith('bonobo ') - assert out.endswith(__version__) + assert __version__ in out