Skip to content

Commit 898bd53

Browse files
Prerak SinghPrerak Singh
authored andcommitted
trailing spaces fix
1 parent a3e2572 commit 898bd53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pydatastructs/graphs/tests/test_algorithms.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,11 +433,11 @@ def _test_shortest_paths_positive_edges(ds, algorithm):
433433
(dist3, pred3) = shortest_paths(graph3, algorithm, 'SLC', backend = Backend.CPP)
434434
assert dist3 == {'S': 6, 'C': 2, 'SLC': 0, 'SF': 6, 'D': 3}
435435
assert pred3 == {'S': 'C', 'C': 'SLC', 'SLC': None, 'SF': 'D', 'D': 'SLC'}
436-
436+
437437
(dist4, pred4) = shortest_paths(graph3, algorithm, 'SLC', 'SF', backend = Backend.CPP)
438438
assert dist4 == 6
439439
assert pred4 == {'S': 'C', 'C': 'SLC', 'SLC': None, 'SF': 'D', 'D': 'SLC'}
440-
440+
441441
graph3.remove_edge('SLC', 'D')
442442
graph3.add_edge('D', 'SLC', -10)
443443
assert raises(ValueError, lambda: shortest_paths(graph3, 'bellman_ford', 'SLC', backend = Backend.CPP))

0 commit comments

Comments
 (0)