Skip to content

Commit ed6e0cf

Browse files
sampreets3actions-user
authored andcommitted
Apply formatting changes
1 parent 07e7324 commit ed6e0cf

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

tests/test_search.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,16 @@
77
import coloredlogs
88
import sys
99

10+
1011
def test_searchDFS():
1112
apla = AutomatedPlanner("data/domain.pddl", "data/problem.pddl")
1213
dfs = DepthFirstSearch(apla)
13-
_,ct = dfs.search()
14+
_, ct = dfs.search()
1415
assert ct != 0
1516

17+
1618
def test_searchBFS():
1719
apla = AutomatedPlanner("data/domain.pddl", "data/problem.pddl")
1820
bfs = BreadthFirstSearch(apla)
19-
_,ct = bfs.search()
21+
_, ct = bfs.search()
2022
assert ct != 0

0 commit comments

Comments
 (0)