Skip to content

Commit

Permalink
Fix type of exception
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderFabisch committed Jun 26, 2024
1 parent 7334eff commit 18c9053
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def test_ur5():

try:
ur5 = UR5Simulation(dt=0.01, gui=False, real_time=False)
except NameError:
except AssertionError:
pytest.skip("pybullet currently not available")
for _ in range(4):
ur5.goto_ee_state(pt.pq_from_transform(desired_ee2base), wait_time=1.0)
Expand Down

0 comments on commit 18c9053

Please sign in to comment.