Skip to content

Commit

Permalink
test_algebra.py -> fix typo in variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jdegenstein authored Jan 12, 2024
1 parent 577ad50 commit 99416be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_algebra.py
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ def test_curve_operators(self):
l = Curve() + [l1, l2]
self.assertTupleAlmostEquals(l @ 0.25, Vector(2.0, -1.0, 0.0), 6)
self.assertTupleAlmostEquals(l % 0.25, Vector(-1.0, 0.0, 0.0), 6)
self.assertTupleAlmostEquals((l ^ 0).position, lines @ 0.25, 6)
self.assertTupleAlmostEquals((l ^ 0).position, l @ 0.25, 6)
self.assertTupleAlmostEquals((l ^ 0).orientation, Vector(0.0, -90.0, 90.0), 6)

# Part + - & Empty
Expand Down

0 comments on commit 99416be

Please sign in to comment.