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

View File

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