Skip to content

Commit

Permalink
Fix code-formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kumar-sanjeeev committed Dec 12, 2024
1 parent 4cff8a6 commit c3313b6
Showing 1 changed file with 2 additions and 22 deletions.
24 changes: 2 additions & 22 deletions pyrobosim/test/utils/test_pose_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,17 +139,7 @@ def test_pose_from_transform():


@pytest.mark.parametrize(
"angle_units, angle_value",
[
(
"radians",
np.pi / 2,
),
(
"degrees",
90.0,
),
],
"angle_units, angle_value", [("radians", np.pi / 2), ("degrees", 90.0)]
)
def test_pose_to_from_dict(angle_units, angle_value):
"""Test creating poses using a dictionary and saving them back out."""
Expand Down Expand Up @@ -206,17 +196,7 @@ def test_pose_to_from_dict(angle_units, angle_value):


@pytest.mark.parametrize(
"angle_units, angle_value",
[
(
"radians",
np.pi / 2,
),
(
"degrees",
90.0,
),
],
"angle_units, angle_value", [("radians", np.pi / 2), ("degrees", 90.0)]
)
def test_construct_pose(angle_units, angle_value):
"""Test pose construct function that accepts various types"""
Expand Down

0 comments on commit c3313b6

Please sign in to comment.