From 9bea8c452ffea1d9ff78a1bc3ce5c4d2f0d6b95f Mon Sep 17 00:00:00 2001 From: Andrei Zeliankou Date: Sun, 12 Dec 2021 21:36:44 +0000 Subject: Tests: fixed type of applications. --- test/test_asgi_targets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_asgi_targets.py') diff --git a/test/test_asgi_targets.py b/test/test_asgi_targets.py index b9489cd3..73929783 100644 --- a/test/test_asgi_targets.py +++ b/test/test_asgi_targets.py @@ -28,7 +28,7 @@ class TestASGITargets(TestApplicationPython): ], "applications": { "targets": { - "type": "python", + "type": self.get_application_type(), "processes": {"spare": 0}, "working_directory": option.test_dir + "/python/targets/", -- cgit From e53ce40c5854d95722cdfc198626fcd5aecbe563 Mon Sep 17 00:00:00 2001 From: Andrei Zeliankou Date: Mon, 31 Jan 2022 23:10:30 +0000 Subject: Tests: removed TestApplicationTLS.get_server_certificate(). distutils.version is replaced by packaging.version. Also minor style fixes. --- test/test_asgi_targets.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'test/test_asgi_targets.py') diff --git a/test/test_asgi_targets.py b/test/test_asgi_targets.py index 73929783..c1e345ef 100644 --- a/test/test_asgi_targets.py +++ b/test/test_asgi_targets.py @@ -1,13 +1,14 @@ -from distutils.version import LooseVersion - import pytest +from packaging import version from unit.applications.lang.python import TestApplicationPython from unit.option import option class TestASGITargets(TestApplicationPython): prerequisites = { - 'modules': {'python': lambda v: LooseVersion(v) >= LooseVersion('3.5')} + 'modules': { + 'python': lambda v: version.parse(v) >= version.parse('3.5') + } } load_module = 'asgi' -- cgit