Skip to content

Commit

Permalink
fix spelling in on_post_update_cb
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Peters <[email protected]>
  • Loading branch information
scpeters committed Aug 2, 2024
1 parent 3737f6b commit 9f6e0aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/test/sensor_TEST.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def test_model(self):
file_path = os.path.dirname(os.path.realpath(__file__))
fixture = TestFixture(os.path.join(file_path, 'joint_test.sdf'))

def on_post_udpate_cb(_info, _ecm):
def on_post_update_cb(_info, _ecm):
self.post_iterations += 1

def on_update_cb(_info, _ecm):
Expand Down Expand Up @@ -63,7 +63,7 @@ def on_update_cb(_info, _ecm):
def on_pre_update_cb(_info, _ecm):
self.pre_iterations += 1

fixture.on_post_update(on_post_udpate_cb)
fixture.on_post_update(on_post_update_cb)
fixture.on_update(on_update_cb)
fixture.on_pre_update(on_pre_update_cb)
fixture.finalize()
Expand Down

0 comments on commit 9f6e0aa

Please sign in to comment.