Skip to content

Commit

Permalink
Change last element of s.mcodes array from 0 to -1 to reflect fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Sigma1912 committed Nov 25, 2024
1 parent 665baf2 commit f127bd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/startup-state/test-ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def assert_axis_initialized(axis):
#assert(math.fabs(s.max_acceleration - 123.45) < 0.0000001)

assert(math.fabs(s.max_velocity - 45.67) < 0.0000001)
assert(s.mcodes == (0, -1, 5, -1, 9, -1, 48, -1, 53, 0))
assert(s.mcodes == (0, -1, 5, -1, 9, -1, 48, -1, 53, -1))
assert(s.mist == 0)
assert(s.motion_line == 0)
assert(s.motion_mode == linuxcnc.TRAJ_MODE_FREE)
Expand Down

0 comments on commit f127bd5

Please sign in to comment.