Skip to content

Commit

Permalink
Fix missing super call to Django test case
Browse files Browse the repository at this point in the history
  • Loading branch information
ghisvail committed Oct 18, 2017
1 parent 19c4bdb commit 7dd8f5d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions jsonrpc/tests/test_backend_django/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ class TestDjangoBackend(TestCase):
def setUpClass(cls):
os.environ['DJANGO_SETTINGS_MODULE'] = \
'jsonrpc.tests.test_backend_django.settings'
super(TestDjangoBackend, cls).setUpClass()

def test_urls(self):
self.assertTrue(isinstance(api.urls, list))
Expand Down

0 comments on commit 7dd8f5d

Please sign in to comment.