summaryrefslogtreecommitdiffhomepage
path: root/test/unit/applications/lang/python.py
diff options
context:
space:
mode:
authorMax Romanov <max.romanov@nginx.com>2020-10-28 00:01:46 +0300
committerMax Romanov <max.romanov@nginx.com>2020-10-28 00:01:46 +0300
commit6a00bab41e2ebffe5f61f6fb9641162624db41d1 (patch)
tree05859e0a76d323a7333bea0ef6086bd07e8f0656 /test/unit/applications/lang/python.py
parentf007ad4dcfee0037cd86bf31804795e5f60cb2d9 (diff)
downloadunit-6a00bab41e2ebffe5f61f6fb9641162624db41d1.tar.gz
unit-6a00bab41e2ebffe5f61f6fb9641162624db41d1.tar.bz2
Tests: improving get_application_type() and fixing its name.
This patch also enables multiversion tests running for Java.
Diffstat (limited to 'test/unit/applications/lang/python.py')
-rw-r--r--test/unit/applications/lang/python.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/test/unit/applications/lang/python.py b/test/unit/applications/lang/python.py
index a4a27bb9..374b0f9c 100644
--- a/test/unit/applications/lang/python.py
+++ b/test/unit/applications/lang/python.py
@@ -34,11 +34,6 @@ class TestApplicationPython(TestApplicationProto):
script_path = '/app/python/' + name
- appication_type = self.get_appication_type()
-
- if appication_type is None:
- appication_type = self.application_type
-
self._load_conf(
{
"listeners": {
@@ -46,7 +41,7 @@ class TestApplicationPython(TestApplicationProto):
},
"applications": {
name: {
- "type": appication_type,
+ "type": self.get_application_type(),
"processes": {"spare": 0},
"path": script_path,
"working_directory": script_path,