From fe0ad8f1da63f5004cd6276655eceae0c453b990 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sun, 15 Apr 2018 16:23:29 +0200 Subject: [PATCH] Fix a test --- test/test_api/test_environment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_api/test_environment.py b/test/test_api/test_environment.py index 18c66c50..627336cc 100644 --- a/test/test_api/test_environment.py +++ b/test/test_api/test_environment.py @@ -29,7 +29,7 @@ def test_find_system_environments(): ) def test_versions(version): try: - env = get_system_environment('python' + version) + env = get_system_environment(version) except InvalidPythonEnvironment: if int(version.replace('.', '')) == py_version: # At least the current version has to work