Skip to content

Commit

Permalink
Fix up rebase merge error
Browse files Browse the repository at this point in the history
  • Loading branch information
lochhh committed Jan 22, 2025
1 parent 978c8b3 commit f986889
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_unit/test_kinematics.py
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ def test_nan_behavior_forward_vector(
for preserved_coord in ["time", "space", "individuals"]:
assert np.all(
forward_vector[preserved_coord]
== valid_data_array_for_forward_vector_with_nans[preserved_coord]
== valid_data_array_for_forward_vector_with_nan[preserved_coord]
)
assert set(forward_vector["space"].values) == {"x", "y"}
# Should have NaN values in the forward vector at time 1 and left_ear
Expand All @@ -520,7 +520,7 @@ def test_nan_behavior_forward_vector(
forward_vector.sel(
time=[
t
for t in valid_data_array_for_forward_vector_with_nans.time
for t in valid_data_array_for_forward_vector_with_nan.time
if t != nan_time
]
)
Expand Down

0 comments on commit f986889

Please sign in to comment.