Skip to content
This repository has been archived by the owner on Aug 22, 2022. It is now read-only.

Commit

Permalink
Keep pylint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Omar Khan committed Jun 5, 2016
1 parent cfd269e commit e8d213c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions registration/tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,17 @@ class BrowserTestMixin:
Runs tests with a real browser. Provides helper methods for filling in
forms. Mix this in with LiveServerTestCase.
"""
def setUp(self):
def setUp(self): # pylint: disable=invalid-name
"""
Start firefox.
"""
super().setUp()
self.client = webdriver.Firefox()

def tearDown(self):
def tearDown(self): # pylint: disable=invalid-name
"""
Close firefox.
"""
self.client.quit()
super().tearDown()

Expand Down

0 comments on commit e8d213c

Please sign in to comment.