Skip to content

Commit

Permalink
Full test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderFabisch committed Jul 18, 2023
1 parent d78eac0 commit 2244f38
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pytransform3d/test/test_transform_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ def test_request_added_transform():
A2B = random_transform(rng)

tm = TransformManager()
assert len(tm.transforms) == 0
tm.add_transform("A", "B", A2B)
assert len(tm.transforms) == 1
A2B_2 = tm.get_transform("A", "B")
assert_array_almost_equal(A2B, A2B_2)

Expand Down

0 comments on commit 2244f38

Please sign in to comment.