diff options
Diffstat (limited to '')
-rw-r--r-- | test/unit/applications/lang/php.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/unit/applications/lang/php.py b/test/unit/applications/lang/php.py index 350eb29b..6ac3d710 100644 --- a/test/unit/applications/lang/php.py +++ b/test/unit/applications/lang/php.py @@ -7,13 +7,17 @@ class TestApplicationPHP(TestApplicationProto): def load(self, script, index='index.php', **kwargs): script_path = option.test_dir + '/php/' + 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": self.application_type, + "type": appication_type, "processes": {"spare": 0}, "root": script_path, "working_directory": script_path, |