Skip to content

Commit

Permalink
Fix small typo at tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
lefterisnik committed Jun 8, 2016
1 parent 1c2ec1c commit 1392f44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ def test_ready_with_one_model(self):


@override_settings(ADMIN_VIEW_PERMISSION_MODELS=[])
def test_read_without_model(self):
def test_ready_without_model_list(self):
self.appconfig.ready()
self.assertEqual(self.model1._meta.permissions, [])
self.assertEqual(self.model2._meta.permissions, [])


@override_settings(ADMIN_VIEW_PERMISSION_MODELS=())
def test_read_without_model(self):
def test_ready_without_model_tuple(self):
self.appconfig.ready()
self.assertEqual(self.model1._meta.permissions, [])
self.assertEqual(self.model2._meta.permissions, [])
Expand Down

0 comments on commit 1392f44

Please sign in to comment.