Skip to content

Commit

Permalink
Use simple API in test again
Browse files Browse the repository at this point in the history
  • Loading branch information
franzpoeschel committed Jul 26, 2023
1 parent 5ec5823 commit cdb4c02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/SerialIOTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5146,7 +5146,7 @@ void variableBasedSingleIteration(std::string const &file)
Series readSeries(file, Access::READ_LINEAR);
readSeries.parseBase();

auto E_x = (*readSeries.readIterations().begin()).meshes["E"]["x"];
auto E_x = readSeries.iterations[0].meshes["E"]["x"];
REQUIRE(E_x.getDimensionality() == 1);
REQUIRE(E_x.getExtent()[0] == extent);
auto chunk = E_x.loadChunk<int>({0}, {extent});
Expand Down

0 comments on commit cdb4c02

Please sign in to comment.