Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/integration' into camera-id
Browse files Browse the repository at this point in the history
  • Loading branch information
qhdwight committed Apr 19, 2024
2 parents 40c8d43 + 5eb699e commit d24a6ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/navigation/drive_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def test_turn_right(self):
print(cmd)
print(done)
self.assertLess(cmd.angular.z, 0.0)
self.assertEqual(cmd.angular.z, -0.7)
self.assertEqual(cmd.angular.z, -1.0)
self.assertEqual(cmd.linear.x, 0.0)

def test_turn_left(self):
Expand All @@ -59,7 +59,7 @@ def test_turn_left(self):
print(cmd)
print(done)
self.assertGreater(cmd.angular.z, 0.0)
self.assertEqual(cmd.angular.z, 0.7)
self.assertEqual(cmd.angular.z, 1.0)
self.assertEqual(cmd.linear.x, 0.0)

def test_straight_angle(self):
Expand Down

0 comments on commit d24a6ba

Please sign in to comment.