Skip to content

Commit

Permalink
Update t_blueprint_mesh_relay.cpp (#1150)
Browse files Browse the repository at this point in the history
Fix spacing Conduit Node names for uniform mesh
    
Names were x and y instead of the proper dx and xy.
  • Loading branch information
acbauer committed Jul 26, 2023
1 parent 50a5dbe commit 476e8cd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/tests/blueprint/t_blueprint_mesh_relay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -778,8 +778,8 @@ TEST(conduit_blueprint_mesh_relay, sparse_topos)
dom0["coordsets/coords/dims/j"] = 3;
dom0["coordsets/coords/origin/x"] = -1;
dom0["coordsets/coords/origin/y"] = -2;
dom0["coordsets/coords/spacing/x"] = 1;
dom0["coordsets/coords/spacing/y"] = 1;
dom0["coordsets/coords/spacing/dx"] = 1;
dom0["coordsets/coords/spacing/dy"] = 1;
dom0["topologies/topo/type"] = "uniform";
dom0["topologies/topo/coordset"] = "coords";
dom0["fields/topo_field/association"] = "element";
Expand All @@ -804,8 +804,8 @@ TEST(conduit_blueprint_mesh_relay, sparse_topos)
dom1["coordsets/coords/dims/j"] = 3;
dom1["coordsets/coords/origin/x"] = -1;
dom1["coordsets/coords/origin/y"] = 0;
dom1["coordsets/coords/spacing/x"] = 1;
dom1["coordsets/coords/spacing/y"] = 1;
dom1["coordsets/coords/spacing/dx"] = 1;
dom1["coordsets/coords/spacing/dy"] = 1;
dom1["topologies/topo/type"] = "uniform";
dom1["topologies/topo/coordset"] = "coords";
dom1["fields/topo_field/association"] = "element";
Expand Down

0 comments on commit 476e8cd

Please sign in to comment.