Skip to content

Commit

Permalink
fix test_2_points.py. assert the two numpy arrays are not emtpy.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelchin committed Oct 23, 2024
1 parent b2b05fa commit 062018e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests-dir/pytestcases/test_2_points.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
def test_point_reconstruction(time, gpts):
rlons, rlats = gpts.reconstruct(time, return_array=True, anchor_plate_id=0)
assert (
rlons and rlats
rlons.size and rlats.size
), "Unable to reconstruct point data to {} Ma with Muller et al. (2019).".format(
time
)
Expand Down

0 comments on commit 062018e

Please sign in to comment.