Skip to content

Commit 43ac83a

Browse files
committed
Fix parallel tests
1 parent d9dcaa5 commit 43ac83a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/ParallelIOTest.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,11 @@ void available_chunks_test(std::string const &file_ending)
493493
}
494494

495495
{
496-
Series read(name, Access::READ_ONLY, MPI_COMM_WORLD);
496+
Series read(
497+
name,
498+
Access::READ_ONLY,
499+
MPI_COMM_WORLD,
500+
R"({"verify_homogeneous_extents": false})");
497501
Iteration it0 = read.iterations[0];
498502
auto E_x = it0.meshes["E"]["x"];
499503
ChunkTable table = E_x.availableChunks();

0 commit comments

Comments
 (0)