Skip to content
Merged
Prev Previous commit
Next Next commit
Update test_agents.py
  • Loading branch information
sofmonk authored Mar 18, 2017
commit 1581f7a72b3f91267e5a87fcfffa0f07d0140beb
3 changes: 1 addition & 2 deletions tests/test_agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ def test_move_forward():
l2 = d.move_forward((1, 0))
assert l2 == (0, 0)


def test_add():
d = Direction(Direction.U)
l1 = d + "right"
Expand All @@ -38,4 +37,4 @@ def test_add():
l1 = d + Direction.R
l2 = d + Direction.L
assert l1.direction == Direction.U
assert l2.direction == Direction.D # fixed
assert l2.direction == Direction.D