Skip to content

Commit

Permalink
Add test for v2f and v3f
Browse files Browse the repository at this point in the history
Signed-off-by: Cary Phillips <[email protected]>
  • Loading branch information
cary-ilm authored and kdt3rd committed Jan 1, 2025
1 parent 82391c9 commit a8dc4f9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/wrappers/python/tests/test_unittest.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,9 @@ def test_tuple(self):
header["t3i"] = (0,1,2)
header["t3f"] = (3.4,5.6,7.8)

header["a2f"] = np.array((1.2, 3.4), 'float32')
header["a2d"] = np.array((1.2, 3.4), 'float64')
header["a3f"] = np.array((1.2, 3.4, 5.6), 'float32')
header["a3d"] = np.array((1.2, 3.4, 5.6), 'float64')

header["a33f"] = np.identity(3, 'float32')
Expand Down

0 comments on commit a8dc4f9

Please sign in to comment.