diff --git a/tests/test_python.py b/tests/test_python.py index 26e18dd74e86d1c9c7ebc472aa819b8395288cde..4032aa0e9809a225b808bad48b44b5c8bcb36ca8 100644 --- a/tests/test_python.py +++ b/tests/test_python.py @@ -1,2 +1,4 @@ def test_python(Command): - assert Command('python --version').rc == 0 + python = Command('python --version') + assert python.rc == 0 + assert '2.7' in python.stdout