From 9f6e0aa2a84074251c91951745d49bf5b88fac9b Mon Sep 17 00:00:00 2001 From: Steve Peters Date: Fri, 2 Aug 2024 14:51:34 -0700 Subject: [PATCH] fix spelling in on_post_update_cb Signed-off-by: Steve Peters --- python/test/sensor_TEST.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/test/sensor_TEST.py b/python/test/sensor_TEST.py index 156459e11e..61068c3fa3 100755 --- a/python/test/sensor_TEST.py +++ b/python/test/sensor_TEST.py @@ -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): @@ -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()