Skip to content

Commit

Permalink
fix assertEqual method
Browse files Browse the repository at this point in the history
  • Loading branch information
vzickner committed Sep 20, 2024
1 parent c53e80a commit fe51677
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion robocorp/tests/test_robocorp_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

0 comments on commit fe51677

Please sign in to comment.