Skip to content

Commit

Permalink
test debug
Browse files Browse the repository at this point in the history
  • Loading branch information
drewnutt committed Jul 8, 2024
1 parent d9c2e8a commit da2aa72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_example_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ def test_pytorch_iterdataset():
e.next_batch()
ex = e.next_batch()
coordinates = ex[2].merge_coordinates()
np.testing.assert_allclose(center[2], ex[2].coord_sets[-1].center().tonumpy())
np.testing.assert_allclose(center[2], np.array(list(ex[2].coord_sets[-1].center())))
np.testing.assert_allclose(coords[2,:lengths[2]], coordinates.coords.tonumpy())
np.testing.assert_allclose(types[2,:lengths[2]], coordinates.type_index.tonumpy())
np.testing.assert_allclose(radii[2,:lengths[2]], coordinates.radii.tonumpy())
Expand Down

0 comments on commit da2aa72

Please sign in to comment.