diff options
author | 2023-03-18 01:53:15 +0400 | |
---|---|---|
committer | 2023-03-18 01:53:15 +0400 | |
commit | e3943f5f27184e1f83ced0b3e3396a9e4a4ba381 (patch) | |
tree | 4630579f00c0296c27ba5db689d12ddb701f93d4 /tests/test_integration.py | |
parent | Add More Information To Version Display Names (diff) |
Update Failing Tests
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'tests/test_integration.py')
-rw-r--r-- | tests/test_integration.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_integration.py b/tests/test_integration.py index 91b01e6..aa21a2d 100644 --- a/tests/test_integration.py +++ b/tests/test_integration.py @@ -7,6 +7,8 @@ from textwrap import dedent from tests.gunicorn_utils import run_gunicorn +from scripts.python_version import MAIN_VERSION + def b64encode_code(data: str): data = dedent(data).strip() @@ -95,6 +97,7 @@ class IntegrationTests(unittest.TestCase): expected = { "stdout": "hello\n", "returncode": 0, + "version": MAIN_VERSION.display_name, "files": [ { "path": "dir/test2.txt", |