diff options
author | Andrei Zeliankou <zelenkov@nginx.com> | 2020-07-28 03:09:50 +0100 |
---|---|---|
committer | Andrei Zeliankou <zelenkov@nginx.com> | 2020-07-28 03:09:50 +0100 |
commit | dc1377dc489937abcc6a5d0dcbfa628e0e6bdf1c (patch) | |
tree | 5ea30791dba4efddd611ea1f6f24cfa00eab8799 /test/unit/main.py | |
parent | c617480eefc0822d52f9153906bb526ad483b9a3 (diff) | |
download | unit-dc1377dc489937abcc6a5d0dcbfa628e0e6bdf1c.tar.gz unit-dc1377dc489937abcc6a5d0dcbfa628e0e6bdf1c.tar.bz2 |
Tests: style.
Diffstat (limited to 'test/unit/main.py')
-rw-r--r-- | test/unit/main.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/unit/main.py b/test/unit/main.py index 8bca888c..253ddc71 100644 --- a/test/unit/main.py +++ b/test/unit/main.py @@ -58,7 +58,6 @@ class TestUnit(unittest.TestCase): if prereq_version == 'all': for version in available_versions: self.application_type = type + ' ' + version - self.application_version = version super().run(result) elif prereq_version == 'any': self.application_type = type + ' ' + available_versions[0] @@ -166,7 +165,7 @@ class TestUnit(unittest.TestCase): self._run() def _run(self): - build_dir = os.path.join(self.pardir, 'build') + build_dir = self.pardir + '/build' self.unitd = build_dir + '/unitd' if not os.path.isfile(self.unitd): |