From e71f037aa6ca582b872e2440c69b81592435f4c0 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Jun 20 2018 13:19:17 +0000 Subject: Fix test suite. Broken in 99730ee. --- diff --git a/tests/test_odcsclient.py b/tests/test_odcsclient.py index 1dab9af..b883e98 100644 --- a/tests/test_odcsclient.py +++ b/tests/test_odcsclient.py @@ -35,7 +35,7 @@ class TestCreateODCSClient(helpers.FreshmakerTestCase): """Test odcsclient.create_odcs_client""" @patch.object(conf, 'odcs_auth_mech', new='kerberos') - @patch('freshmaker.odcsclient.ODCS') + @patch('freshmaker.odcsclient.RetryingODCS') def test_create_with_kerberos_auth(self, ODCS): odcs = create_odcs_client() @@ -53,7 +53,7 @@ class TestCreateODCSClient(helpers.FreshmakerTestCase): @patch.object(conf, 'odcs_auth_mech', new='openidc') @patch.object(conf, 'odcs_openidc_token', new='12345') - @patch('freshmaker.odcsclient.ODCS') + @patch('freshmaker.odcsclient.RetryingODCS') def test_create_with_openidc_auth(self, ODCS): odcs = create_odcs_client()