Skip to content

Commit

Permalink
Use JSON backend in CoreTest
Browse files Browse the repository at this point in the history
  • Loading branch information
franzpoeschel committed Jul 13, 2023
1 parent fe7cf1e commit b4779a3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/CoreTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ TEST_CASE("custom_hierarchies", "[core]")

TEST_CASE("custom_hierarchies_no_rw", "[core]")
{
std::string filePath = "../samples/custom_hierarchies.bp";
std::string filePath = "../samples/custom_hierarchies.json";
Series write(filePath, Access::CREATE);
write.setMeshesPath(std::vector<std::string>{".*/meshes/"});
write.iterations[0]["custom"]["hierarchy"];
Expand All @@ -321,6 +321,7 @@ TEST_CASE("custom_hierarchies_no_rw", "[core]")
iteration_level_ds.resetDataset({Datatype::INT, {10}});
std::vector<int> data(10, 5);
iteration_level_ds.storeChunk(data);
write.flush();
}

{
Expand Down

0 comments on commit b4779a3

Please sign in to comment.