diff options
author | Andrei Zeliankou <zelenkov@nginx.com> | 2022-01-31 23:10:30 +0000 |
---|---|---|
committer | Andrei Zeliankou <zelenkov@nginx.com> | 2022-01-31 23:10:30 +0000 |
commit | e53ce40c5854d95722cdfc198626fcd5aecbe563 (patch) | |
tree | fe3be3f5d9685c29424e84f0f08b9459ea5de37b /test/test_static_fallback.py | |
parent | 485886d8f9a665e9c416a98dd00e5c836b6bf27c (diff) | |
download | unit-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 '')
-rw-r--r-- | test/test_static_fallback.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/test_static_fallback.py b/test/test_static_fallback.py index 71b268c8..1f1a1df7 100644 --- a/test/test_static_fallback.py +++ b/test/test_static_fallback.py @@ -82,7 +82,10 @@ class TestStaticFallback(TestApplicationProto): def test_static_fallback_share(self, temp_dir): self.action_update( - {"share": "/blah", "fallback": {"share": temp_dir + "/assets$uri"},} + { + "share": "/blah", + "fallback": {"share": temp_dir + "/assets$uri"}, + } ) resp = self.get() |