This commit is contained in:
Luis San Pablo 2015-12-07 22:24:22 -06:00
parent 4e5c57ab46
commit 1b3e4332e8

View File

@ -23,7 +23,7 @@ class TestSettings(TestCase):
Make sure user is alerted with an error when a removed setting
is set.
"""
with self.assertRaise(AttributeError):
with self.assertRaises(AttributeError):
APISettings({
'MAX_PAGINATE_BY': 100
})