Closed lochhh closed 9 months ago
The missing_dim_dataset fixture uses drop_dims("time") to remove the "time" dimension but it also removes any data_vars having "time" as a dimension. This makes the fixture no different from missing_var_dataset when testing PosesAccessor.validate().
missing_dim_dataset
drop_dims("time")
data_vars
missing_var_dataset
PosesAccessor.validate()
The
missing_dim_dataset
fixture usesdrop_dims("time")
to remove the "time" dimension but it also removes anydata_vars
having "time" as a dimension. This makes the fixture no different frommissing_var_dataset
when testingPosesAccessor.validate()
.