Skip to content

Commit

Permalink
change test_turn_no_args
Browse files Browse the repository at this point in the history
test will check if turtle doesn't turn
  • Loading branch information
AnneliesVlaar committed Feb 17, 2025
1 parent 88e457d commit 51ae93d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_level/test_level_01.py
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ def test_one_color_nl(self):
#
def test_turn_no_args(self):
code = "turn"
expected = "t.right(90)"
expected = "t.right(0)"

self.multi_level_tester(
code=code,
Expand Down Expand Up @@ -653,7 +653,7 @@ def test_forward_turn_combined(self):

expected = self.dedent(
self.forward_transpiled(50),
't.right(90)',
't.right(0)',
self.forward_transpiled(100))

self.multi_level_tester(
Expand Down

0 comments on commit 51ae93d

Please sign in to comment.