Skip to content

Commit

Permalink
Fix import in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
flferretti committed Feb 18, 2025
1 parent c515062 commit 7a2f1b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

import jaxsim
import jaxsim.api as js
from jaxsim.api.model import Integrator
from jaxsim.api.model import IntegratorType


def pytest_addoption(parser):
Expand Down Expand Up @@ -131,8 +131,8 @@ def velocity_representation(request) -> jaxsim.VelRepr:
@pytest.fixture(
scope="function",
params=[
pytest.param(Integrator.SemiImplicitEuler, id="semi_implicit_euler"),
pytest.param(Integrator.RungeKutta4, id="runge_kutta_4"),
pytest.param(IntegratorType.SemiImplicitEuler, id="semi_implicit_euler"),
pytest.param(IntegratorType.RungeKutta4, id="runge_kutta_4"),
],
)
def integrator(request) -> str:
Expand Down

0 comments on commit 7a2f1b9

Please sign in to comment.