You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assertdataset.GetCellData().GetNumberOfArrays() ==nb_cell_attributes, f"Expected {nb_cell_attributes} cell attributes after the merge, not {dataset.GetCellData().GetNumberOfArrays()}."
32
+
assertdataset.GetCellData().GetNumberOfArrays(
33
+
) ==nb_cell_attributes, f"Expected {nb_cell_attributes} cell attributes after the merge, not {dataset.GetCellData().GetNumberOfArrays()}."
34
34
35
-
assertdataset.GetPointData().GetNumberOfArrays() ==nb_pt_attributes, f"Expected {nb_pt_attributes} point attributes after the merge, not {dataset.GetPointData().GetNumberOfArrays()}."
35
+
assertdataset.GetPointData().GetNumberOfArrays(
36
+
) ==nb_pt_attributes, f"Expected {nb_pt_attributes} point attributes after the merge, not {dataset.GetPointData().GetNumberOfArrays()}."
36
37
37
-
assertdataset.GetFieldData().GetNumberOfArrays() ==nb_field_attributes, f"Expected {nb_field_attributes} field attributes after the merge, not {dataset.GetFieldData().GetNumberOfArrays()}."
38
+
assertdataset.GetFieldData().GetNumberOfArrays(
39
+
) ==nb_field_attributes, f"Expected {nb_field_attributes} field attributes after the merge, not {dataset.GetFieldData().GetNumberOfArrays()}."
0 commit comments