From 7580e6886fbb8c35d6b7b5c9aba5d43a46808ef8 Mon Sep 17 00:00:00 2001 From: Jeffrey Parker Date: Wed, 7 Feb 2024 13:27:18 -0500 Subject: [PATCH] Add child_api_host to AccountAdmin tests to fix failing tests --- tests/accountAdmin/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/accountAdmin/base.py b/tests/accountAdmin/base.py index 882e404e..ebc0eda1 100644 --- a/tests/accountAdmin/base.py +++ b/tests/accountAdmin/base.py @@ -6,7 +6,7 @@ class TestAccountAdmin(unittest.TestCase): def setUp(self): - kwargs = {'ikey': 'test_ikey', 'skey': 'test_skey', 'host': 'example.com'} + kwargs = {'ikey': 'test_ikey', 'skey': 'test_skey', 'host': 'example.com', 'child_api_host': 'example2.com'} self.client = duo_client.admin.AccountAdmin( 'DA012345678901234567', **kwargs) # monkeypatch client's _connect()