def test_can_set_api_key(self): client = ZoomClient('KEY', 'SECRET') client.api_key = 'NEW-KEY' self.assertEqual(client.api_key, 'NEW-KEY')
def test_can_set_api_key(self): client = ZoomClient("KEY", "SECRET") client.api_key = "NEW-KEY" self.assertEqual(client.api_key, "NEW-KEY")