diff --git a/Authors b/Authors index 4ea64dd367..f61b815288 100644 --- a/Authors +++ b/Authors @@ -21,6 +21,7 @@ Justin Shepherd Ken Pepple Kevin L. Mitchell Lorin Hochstein +Major Hayden Mark McLoughlin Matt Dietz Mike Lundy diff --git a/glance/tests/unit/test_auth.py b/glance/tests/unit/test_auth.py index c4a5112b99..d8ea7160b2 100644 --- a/glance/tests/unit/test_auth.py +++ b/glance/tests/unit/test_auth.py @@ -166,7 +166,7 @@ def fake_do_request(cls, url, method, headers=None, body=None): for creds in good_creds: plugin = auth.KeystoneStrategy(creds) - self.assertIsNone(plugin.authenticate()) + self.assertTrue(plugin.authenticate() is None) def test_v2_auth(self): """Test v2 auth code paths""" @@ -267,4 +267,4 @@ def fake_do_request(cls, url, method, headers=None, body=None): for creds in good_creds: plugin = auth.KeystoneStrategy(creds) - self.assertIsNone(plugin.authenticate()) + self.assertTrue(plugin.authenticate() is None)