diff options
author | Max Romanov <max.romanov@nginx.com> | 2020-10-28 00:01:46 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2020-10-28 00:01:46 +0300 |
commit | 6a00bab41e2ebffe5f61f6fb9641162624db41d1 (patch) | |
tree | 05859e0a76d323a7333bea0ef6086bd07e8f0656 /test/unit/applications/lang/perl.py | |
parent | f007ad4dcfee0037cd86bf31804795e5f60cb2d9 (diff) | |
download | unit-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/perl.py')
-rw-r--r-- | test/unit/applications/lang/perl.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/test/unit/applications/lang/perl.py b/test/unit/applications/lang/perl.py index a27c7649..9dc24ace 100644 --- a/test/unit/applications/lang/perl.py +++ b/test/unit/applications/lang/perl.py @@ -7,17 +7,13 @@ class TestApplicationPerl(TestApplicationProto): def load(self, script, name='psgi.pl', **kwargs): script_path = option.test_dir + '/perl/' + script - appication_type = self.get_appication_type() - - if appication_type is None: - appication_type = self.application_type self._load_conf( { "listeners": {"*:7080": {"pass": "applications/" + script}}, "applications": { script: { - "type": appication_type, + "type": self.get_application_type(), "processes": {"spare": 0}, "working_directory": script_path, "script": script_path + '/' + name, |