Skip to content

Commit

Permalink
Fix core_rotates_screen.py
Browse files Browse the repository at this point in the history
- One of the ScreenLayout constants got changed in a recent PR
  • Loading branch information
JesseTG committed Oct 18, 2024
1 parent a11f576 commit 597067c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/python/basics/core_rotates_screen.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def generate_input():
assert session.video.rotation == Rotation.NINETY, f"Expected core rotation of 90 degrees, got {session.video.rotation}"

layout2 = screen_layout()
assert layout2 == 8, f"Expected screen layout 8 (TurnLeft), got {layout2}"
assert layout2 == 10, f"Expected screen layout 10 (TurnLeft), got {layout2}"

frame2 = session.video.screenshot(False)
geometry2 = session.video.geometry
Expand Down

0 comments on commit 597067c

Please sign in to comment.