From 9db4c2ae8aa48e0624facf5740c6741c1ce2f136 Mon Sep 17 00:00:00 2001 From: Luis San Pablo Date: Mon, 7 Dec 2015 22:24:22 -0600 Subject: [PATCH] --ammend --- tests/test_settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_settings.py b/tests/test_settings.py index 518ba0429..977780164 100644 --- a/tests/test_settings.py +++ b/tests/test_settings.py @@ -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 })