From 3bac904607f1999136b97249d9aa220f1db94258 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Sat, 3 Jan 2015 10:13:17 +0100 Subject: [PATCH] Removed extraneous super call in LiveServerTestCase Refs #21281. Thanks Tim Graham and Thomas Chaumeny for investigations. --- django/test/testcases.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/django/test/testcases.py b/django/test/testcases.py index a7c89fe854..80e8d3aa4a 100644 --- a/django/test/testcases.py +++ b/django/test/testcases.py @@ -1255,8 +1255,6 @@ class LiveServerTestCase(TransactionTestCase): cls._tearDownClassInternal() raise cls.server_thread.error - super(LiveServerTestCase, cls).setUpClass() - @classmethod def _tearDownClassInternal(cls): # There may not be a 'server_thread' attribute if setUpClass() for some