diff options
| author | Claude Paroz <claude@2xlibre.net> | 2013-02-25 08:56:30 +0100 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2013-02-25 08:58:11 +0100 |
| commit | 6d52bcbb7cb962e4874a8e7a3d1d8ee77233cd19 (patch) | |
| tree | 218617c8a39b71ace43be99b523ee5c53141a134 /tests | |
| parent | 87e8dfaa47a07662351a8a8dc9a15c6afef87b88 (diff) | |
Fixed #19903 -- Fixed unbalanced setUp/tearDown calls in LiveServerAddress test
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/regressiontests/servers/tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/regressiontests/servers/tests.py b/tests/regressiontests/servers/tests.py index 1a7552ed11..4495596dfa 100644 --- a/tests/regressiontests/servers/tests.py +++ b/tests/regressiontests/servers/tests.py @@ -96,6 +96,8 @@ class LiveServerAddress(LiveServerBase): raise Exception("The line above should have raised an exception") except exception: pass + finally: + super(LiveServerAddress, cls).tearDownClass() def test_test_test(self): # Intentionally empty method so that the test is picked up by the |
