diff --git a/framework/src/fvbcs/FVFunctorDirichletBC.C b/framework/src/fvbcs/FVFunctorDirichletBC.C index 6bd5c542e0a4..3f75382921fa 100644 --- a/framework/src/fvbcs/FVFunctorDirichletBC.C +++ b/framework/src/fvbcs/FVFunctorDirichletBC.C @@ -59,11 +59,13 @@ FVFunctorDirichletBCTempl::boundaryValue(const FaceInfo & fi, if (!_use_other_side) return _functor(sfa, state); else if (fi.elemPtr() == sfa.face_side) - return _functor({&fi, Moose::FV::LimiterType::CentralDifference, true, false, fi.neighborPtr(), nullptr}, - state); + return _functor( + {&fi, Moose::FV::LimiterType::CentralDifference, true, false, fi.neighborPtr(), nullptr}, + state); else - return _functor({&fi, Moose::FV::LimiterType::CentralDifference, true, false, fi.elemPtr(), nullptr}, - state); + return _functor( + {&fi, Moose::FV::LimiterType::CentralDifference, true, false, fi.elemPtr(), nullptr}, + state); } template class FVFunctorDirichletBCTempl; diff --git a/test/tests/fvkernels/dispersion-test/tests b/test/tests/fvkernels/dispersion-test/tests index 6a94bc822eb2..723515b0e7d5 100644 --- a/test/tests/fvkernels/dispersion-test/tests +++ b/test/tests/fvkernels/dispersion-test/tests @@ -1,5 +1,5 @@ [Tests] - design = 'INSFVScalarFieldAdvection.md' + design = 'FVAdvection.md' issues = '#28891' [bottom_left_limited_scalar_advection] requirement = 'The system shall be able to perform a variety of limiting schemes when solving scalar transport equations in cartesian meshes with bottom-left advection. These schemes include'