Skip to content

Commit

Permalink
fixing the unittest
Browse files Browse the repository at this point in the history
  • Loading branch information
KhalidOmer committed Jan 22, 2024
1 parent aa4cfb1 commit 75c4ddc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graphs/python/eulerian_path/src/test_eulerian_path.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class TestEulerianPath(unittest.TestCase):
def test_eulerian_path_exists(self):
# Test cases where Eulerian paths should exist
# Test cases where Eulerian paths exist
graph1 = {1: [2, 3], 2: [1, 3, 4], 3: [1, 2, 4], 4: [2, 3]}
self.assertTrue(eulerian_path(graph1))

Expand Down

0 comments on commit 75c4ddc

Please sign in to comment.