Skip to content
Prev Previous commit
Next Next commit
Minor fix
  • Loading branch information
apb7 committed Feb 13, 2018
commit 6a23f22079bdb1b9fa9cc4b39a0dfe05a2fd4f51
3 changes: 1 addition & 2 deletions tests/test_agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,8 @@ def test_TableDrivenVacuumAgent() :
environment.add_thing(agent)
# run the environment
environment.run()
print(environment.status)
# check final status of the environment
assert environment.status == {(0,0):'Clean' , (1,0) : 'Clean'}
assert environment.status == {(1, 0):'Clean', (0, 0):'Clean'}


def test_compare_agents() :
Expand Down