diff --git a/tests/systems/systems_test.C b/tests/systems/systems_test.C index 409d2425c81..01642453315 100644 --- a/tests/systems/systems_test.C +++ b/tests/systems/systems_test.C @@ -281,7 +281,7 @@ public: std::unique_ptr > gold_mat_ptr = SparseMatrix::build(*TestCommWorld); SparseMatrix & gold_mat = *gold_mat_ptr; - gold_mat.init(n_new_dofs, n_old_dofs, n_new_dofs_local, n_old_dofs); + gold_mat.init(n_new_dofs, n_old_dofs, n_new_dofs_local, n_old_dofs_local); // construct the gold projection matrix using static node numbering as reference info for ( const auto & node : mesh.local_node_ptr_range() ) @@ -430,7 +430,7 @@ public: std::unique_ptr > gold_mat_ptr = SparseMatrix::build(*TestCommWorld); SparseMatrix & gold_mat = *gold_mat_ptr; - gold_mat.init(n_new_dofs, n_old_dofs, n_new_dofs_local, n_old_dofs); + gold_mat.init(n_new_dofs, n_old_dofs, n_new_dofs_local, n_old_dofs_local); // construct the gold projection matrix using static node numbering as reference info for ( const auto & node : mesh.local_node_ptr_range() ) @@ -608,7 +608,7 @@ public: std::unique_ptr > gold_mat_ptr = SparseMatrix::build(*TestCommWorld); SparseMatrix & gold_mat = *gold_mat_ptr; - gold_mat.init(n_new_dofs, n_old_dofs, n_new_dofs_local, n_old_dofs); + gold_mat.init(n_new_dofs, n_old_dofs, n_new_dofs_local, n_old_dofs_local); // construct the gold projection matrix using static node numbering as reference info for ( const auto & node : mesh.local_node_ptr_range() )