From 329e8c8205975838a02d8e8d3571044b7b90c538 Mon Sep 17 00:00:00 2001 From: Nils Schween Date: Thu, 16 Mar 2023 08:15:27 +0100 Subject: [PATCH] correct the typo in the variable name Co-authored-by: Daniel Arndt --- ...rid_tools_collect_periodic_faces_parallel_shared_tria.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/grid/grid_tools_collect_periodic_faces_parallel_shared_tria.cc b/tests/grid/grid_tools_collect_periodic_faces_parallel_shared_tria.cc index fc32abf0d8..e805d991ad 100644 --- a/tests/grid/grid_tools_collect_periodic_faces_parallel_shared_tria.cc +++ b/tests/grid/grid_tools_collect_periodic_faces_parallel_shared_tria.cc @@ -42,15 +42,15 @@ test(MPI_Comm comm) unsigned int num_refinements = 1 << 4; Point p1; Point p2; - std::vector repititions(dim); + std::vector repetitions(dim); for (unsigned int i = 0; i < dim; ++i) { p1[i] = 0.; p2[i] = 1.; - repititions[i] = num_refinements; + repetitions[i] = num_refinements; } - GridGenerator::subdivided_hyper_rectangle(tria, repititions, p1, p2, true); + GridGenerator::subdivided_hyper_rectangle(tria, repetitions, p1, p2, true); // Collect periodic faces in the x-direction GridTools::collect_periodic_faces(tria, 0, 1, 0, matched_pairs); // Check the size of the matched_pairs vector -- 2.39.5