diff --git a/robocorp/tests/test_robocorp_client.py b/robocorp/tests/test_robocorp_client.py index ff36d91..0a95ca1 100644 --- a/robocorp/tests/test_robocorp_client.py +++ b/robocorp/tests/test_robocorp_client.py @@ -51,7 +51,7 @@ def test_with_custom_action(self): temperature = get_process_variable(base_url, auth, process_instance_id, 'temperature') self.assertIsNotNone(temperature) - self.assertEquals(temperature['value'], 18) + self.assertEqual(temperature['value'], 18) finally: terminate_process(base_url, auth, process_instance_id) self.remove_deployment()