Skip to content

Commit 1b78f62

Browse files
committed
convert explicit call to super
1 parent 09e986e commit 1b78f62

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

session_security/tests/test_base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class BaseLiveServerTestCase(SettingsMixin, StaticLiveServerTestCase,
3636
fixtures = ['session_security_test_user']
3737

3838
def setUp(self):
39-
SettingsMixin.setUp(self)
39+
super().setUp()
4040
from selenium.webdriver.firefox.options import Options as FirefoxOptions
4141

4242
options = FirefoxOptions()
@@ -56,4 +56,4 @@ def tearDown(self):
5656
self.sel.quit()
5757
@classmethod
5858
def tearDownClass(cls):
59-
super().tearDownClass()
59+
super().tearDownClass()

0 commit comments

Comments
 (0)