Skip to content

Commit

Permalink
fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
TolisChal committed Sep 30, 2024
1 parent 31b89db commit 2ecaaae
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/test_algorithm_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,7 @@ def setUp(self):
def test_str_method(self):
"""Test the __str__ method"""
expected_str = "{'data': {'value1': 10, 'value2': 20}, 'name': 'Test Result'}"
self.assertEqual(
str(self.result1), expected_str
)
self.assertEqual(str(self.result1), expected_str)

def test_combine_with_another_result(self):
"""Test the combine method with another result"""
Expand Down

0 comments on commit 2ecaaae

Please sign in to comment.