Skip to content

Commit

Permalink
cleaned up tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinPrivitera committed Dec 8, 2023
1 parent 525de9b commit 3e62225
Show file tree
Hide file tree
Showing 2 changed files with 1,126 additions and 1,196 deletions.
4 changes: 2 additions & 2 deletions src/tests/relay/silo_test_utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ silo_name_changer(const std::string &mmesh_name,
if (! save_mesh.has_path("state/cycle"))
{
// this is to pass the diff, as silo will add cycle in if it is not there
save_mesh["state/cycle"] = (int64) 0;
save_mesh["state/cycle"] = 0;
}

if (save_mesh.has_child("topologies"))
Expand Down Expand Up @@ -217,7 +217,7 @@ overlink_name_changer(conduit::Node &save_mesh)
}
if (! save_mesh.has_path("state/cycle"))
{
save_mesh["state/cycle"] = (int64) 0;
save_mesh["state/cycle"] = 0;
}

// we assume 1 coordset and 1 topo
Expand Down
Loading

0 comments on commit 3e62225

Please sign in to comment.