Skip to content

Commit

Permalink
fixed typo in variable nam
Browse files Browse the repository at this point in the history
  • Loading branch information
SirJamesClarkMaxwell committed Jan 19, 2025
1 parent 5a09788 commit 85fde60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_graphical_units/test_threed.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ def test_type_conversion_in_Line3D():

def test_type_conversion_in_Arrow3D():
start, end = [0, 0, 0], [1, 1, 1]
line = Arrow3D(start, end)
type_table = [type(item) for item in [*line.get_start(), *line.get_end()]]
arrow = Arrow3D(start, end)
type_table = [type(item) for item in [*arrow.get_start(), *arrow.get_end()]]
bool_table = [t == np.float64 for t in type_table]
assert all(bool_table), "Types of start and end points are not np.float64"

Expand Down

0 comments on commit 85fde60

Please sign in to comment.