Skip to content

Commit 3c409ca

Browse files
committed
Merge branch 'improve-coverage' of https://github.com/APLA-Toolbox/PythonPDDL into improve-coverage
2 parents 7c9dda6 + ed6e0cf commit 3c409ca

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

tests/test_search.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,13 @@
1212

1313
def test_searchDFS():
1414
dfs = DepthFirstSearch(apla)
15-
_,ct = dfs.search()
15+
_, ct = dfs.search()
1616
assert ct != 0
1717

18+
1819
def test_searchBFS():
1920
bfs = BreadthFirstSearch(apla)
20-
_,ct = bfs.search()
21+
_, ct = bfs.search()
2122
assert ct != 0
2223

2324
def test_searchDijkstra():

0 commit comments

Comments
 (0)