We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efb983f commit 5a491bdCopy full SHA for 5a491bd
1 file changed
tests/test_automated_planner.py
@@ -28,9 +28,9 @@ def test_execute_action():
28
def test_state_has_term():
29
apla = AutomatedPlanner("data/domain.pddl", "data/problem.pddl")
30
is_goal = apla.state_has_term(apla.initial_state, apla.goals[0])
31
- assert is_goal == False
+ assert not is_goal
32
33
34
def test_state_assertion():
35
36
- assert apla.satisfies(apla.problem.goal, apla.initial_state) == False
+ assert not apla.satisfies(apla.problem.goal, apla.initial_state)
0 commit comments