Skip to content

Commit 979fac1

Browse files
authored
Merge pull request #1501 from llnl/bugfix/nselliott/coord-typo
Fix lingering typo in hard-coded coords values in polytopal test
2 parents ce00cc3 + de9c216 commit 979fac1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/tests/blueprint/t_blueprint_mpi_mesh_polytopal.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ void test_polytopal_create_fine_domain_2d(Node& domain)
252252
xcoords.push_back(1.625);
253253
xcoords.push_back(1.75);
254254
xcoords.push_back(1.875);
255-
xcoords.push_back(1.0);
255+
xcoords.push_back(2.0);
256256
}
257257
std::vector<double> ycoords;
258258
double yval = 0.0;
@@ -351,7 +351,7 @@ void test_polytopal_create_fine_domain_3d(Node& domain)
351351
xcoords.push_back(1.625);
352352
xcoords.push_back(1.75);
353353
xcoords.push_back(1.875);
354-
xcoords.push_back(1.0);
354+
xcoords.push_back(2.0);
355355
}
356356
}
357357

0 commit comments

Comments
 (0)