We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9c239c commit bd32707Copy full SHA for bd32707
test/parallel/test_mpi.py
@@ -151,8 +151,8 @@ def test_write_particles(particle_path, tmp_path):
151
output_path = comm.bcast(output_path, root=0)
152
with oc.open(particle_path) as f:
153
oc.write(output_path, f)
154
- original_data = oc.read(particle_path)
155
- written_data = oc.read(output_path)
+ original_data = oc.open(particle_path)
+ written_data = oc.open(output_path)
156
indices = np.random.randint(0, len(original_data), 100)
157
for key in original_data.keys():
158
assert np.all(
0 commit comments