summaryrefslogtreecommitdiffhomepage
path: root/test/test_variables.py
diff options
context:
space:
mode:
authorAndrei Zeliankou <zelenkov@nginx.com>2022-01-31 23:10:30 +0000
committerAndrei Zeliankou <zelenkov@nginx.com>2022-01-31 23:10:30 +0000
commite53ce40c5854d95722cdfc198626fcd5aecbe563 (patch)
treefe3be3f5d9685c29424e84f0f08b9459ea5de37b /test/test_variables.py
parent485886d8f9a665e9c416a98dd00e5c836b6bf27c (diff)
downloadunit-e53ce40c5854d95722cdfc198626fcd5aecbe563.tar.gz
unit-e53ce40c5854d95722cdfc198626fcd5aecbe563.tar.bz2
Tests: removed TestApplicationTLS.get_server_certificate().
distutils.version is replaced by packaging.version. Also minor style fixes.
Diffstat (limited to 'test/test_variables.py')
-rw-r--r--test/test_variables.py12
1 files changed, 4 insertions, 8 deletions
diff --git a/test/test_variables.py b/test/test_variables.py
index d8547b7b..f110fb74 100644
--- a/test/test_variables.py
+++ b/test/test_variables.py
@@ -103,20 +103,16 @@ class TestVariables(TestApplicationProto):
def test_variables_empty(self):
def update_pass(prefix):
assert 'success' in self.conf(
- {
- "listeners": {
- "*:7080": {"pass": prefix + "/$method"},
- },
- },
+ {"listeners": {"*:7080": {"pass": prefix + "/$method"}}},
), 'variables empty'
- update_pass("routes");
+ update_pass("routes")
assert self.get(url='/1')['status'] == 404
- update_pass("upstreams");
+ update_pass("upstreams")
assert self.get(url='/2')['status'] == 404
- update_pass("applications");
+ update_pass("applications")
assert self.get(url='/3')['status'] == 404
def test_variables_invalid(self):