From 5db0ffdd7ba5360dc828fe28291d55da310bb180 Mon Sep 17 00:00:00 2001
From: Bernd Flemisch <bernd@iws.uni-stuttgart.de>
Date: Mon, 15 Oct 2012 12:23:02 +0000
Subject: [PATCH] Tests: use ProblemEnableGravity instead of the deprecated
 EnableGravity.

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@9311 2fb0f335-1f38-0410-981e-8018bf24f1b0
---
 test/boxmodels/1p/1ptestproblem.hh                    | 2 +-
 test/boxmodels/1p2c/1p2coutflowproblem.hh             | 2 +-
 test/boxmodels/2p/lensproblem.hh                      | 2 +-
 test/boxmodels/2p2c/injectionproblem.hh               | 2 +-
 test/boxmodels/2p2cni/waterairproblem.hh              | 2 +-
 test/boxmodels/2pni/injectionproblem2pni.hh           | 2 +-
 test/boxmodels/3p3c/infiltrationproblem.hh            | 2 +-
 test/boxmodels/3p3cni/columnxylolproblem.hh           | 2 +-
 test/boxmodels/3p3cni/kuevetteproblem.hh              | 2 +-
 test/boxmodels/co2/heterogeneousproblem.hh            | 2 +-
 test/boxmodels/co2ni/heterogeneousproblemni.hh        | 2 +-
 test/boxmodels/mpnc/forchheimer1pproblem.hh           | 2 +-
 test/boxmodels/mpnc/forchheimer2pproblem.hh           | 2 +-
 test/boxmodels/mpnc/obstacleproblem.hh                | 2 +-
 test/boxmodels/richards/richardslensproblem.hh        | 2 +-
 test/common/generalproblem/generallensproblem.hh      | 2 +-
 test/decoupled/1p/test_1pproblem.hh                   | 2 +-
 test/decoupled/1p/test_diffusionproblem.hh            | 6 +++---
 test/decoupled/2p/test_impesadaptiveproblem.hh        | 2 +-
 test/decoupled/2p/test_impesproblem.hh                | 2 +-
 test/decoupled/2p/test_transportproblem.hh            | 2 +-
 test/decoupled/2p2c/test_adaptive2p2cproblem.hh       | 2 +-
 test/decoupled/2p2c/test_dec2p2cproblem.hh            | 2 +-
 test/decoupled/2p2c/test_multiphysics2p2cproblem.hh   | 2 +-
 test/freeflow/navierstokes/navierstokestestproblem.hh | 2 +-
 test/freeflow/stokes/stokestestproblem.hh             | 2 +-
 test/freeflow/stokes2c/stokes2ctestproblem.hh         | 2 +-
 test/freeflow/stokes2cni/stokes2cnitestproblem.hh     | 2 +-
 28 files changed, 30 insertions(+), 30 deletions(-)

diff --git a/test/boxmodels/1p/1ptestproblem.hh b/test/boxmodels/1p/1ptestproblem.hh
index 1bddd49341..1bee068691 100644
--- a/test/boxmodels/1p/1ptestproblem.hh
+++ b/test/boxmodels/1p/1ptestproblem.hh
@@ -83,7 +83,7 @@ SET_INT_PROP(OnePTestProblem, PreconditionerIterations, 1);
 SET_SCALAR_PROP(OnePTestProblem, PreconditionerRelaxation, 1.0);
 
 // Enable gravity
-SET_BOOL_PROP(OnePTestProblem, EnableGravity, true);
+SET_BOOL_PROP(OnePTestProblem, ProblemEnableGravity, true);
 }
 
 /*!
diff --git a/test/boxmodels/1p2c/1p2coutflowproblem.hh b/test/boxmodels/1p2c/1p2coutflowproblem.hh
index 160a5e178c..31ed445263 100644
--- a/test/boxmodels/1p2c/1p2coutflowproblem.hh
+++ b/test/boxmodels/1p2c/1p2coutflowproblem.hh
@@ -80,7 +80,7 @@ SET_TYPE_PROP(OnePTwoCOutflowProblem,
 SET_BOOL_PROP(OnePTwoCOutflowProblem, UseMoles, false);
 
 // Disable gravity
-SET_BOOL_PROP(OnePTwoCOutflowProblem, EnableGravity, false);
+SET_BOOL_PROP(OnePTwoCOutflowProblem, ProblemEnableGravity, false);
 }
 
 
diff --git a/test/boxmodels/2p/lensproblem.hh b/test/boxmodels/2p/lensproblem.hh
index 1936357f84..927c8402bf 100644
--- a/test/boxmodels/2p/lensproblem.hh
+++ b/test/boxmodels/2p/lensproblem.hh
@@ -108,7 +108,7 @@ SET_INT_PROP(LensProblem, PreconditionerIterations, 1);
 SET_SCALAR_PROP(LensProblem, PreconditionerRelaxation, 1.0);
 
 // Enable gravity
-SET_BOOL_PROP(LensProblem, EnableGravity, true);
+SET_BOOL_PROP(LensProblem, ProblemEnableGravity, true);
 }
 
 /*!
diff --git a/test/boxmodels/2p2c/injectionproblem.hh b/test/boxmodels/2p2c/injectionproblem.hh
index f7200e9189..eaad9605f2 100644
--- a/test/boxmodels/2p2c/injectionproblem.hh
+++ b/test/boxmodels/2p2c/injectionproblem.hh
@@ -64,7 +64,7 @@ SET_PROP(InjectionProblem, FluidSystem)
 };
 
 // Enable gravity
-SET_BOOL_PROP(InjectionProblem, EnableGravity, true);
+SET_BOOL_PROP(InjectionProblem, ProblemEnableGravity, true);
 
 SET_BOOL_PROP(InjectionProblem, EnableJacobianRecycling, true);
 SET_BOOL_PROP(InjectionProblem, VtkAddVelocity, false);
diff --git a/test/boxmodels/2p2cni/waterairproblem.hh b/test/boxmodels/2p2cni/waterairproblem.hh
index 4627b2330d..5259b53674 100644
--- a/test/boxmodels/2p2cni/waterairproblem.hh
+++ b/test/boxmodels/2p2cni/waterairproblem.hh
@@ -63,7 +63,7 @@ SET_PROP(WaterAirProblem, Problem)
 SET_TYPE_PROP(WaterAirProblem, FluidSystem, Dumux::FluidSystems::H2ON2<typename GET_PROP_TYPE(TypeTag, Scalar), false>);
 
 // Enable gravity
-SET_BOOL_PROP(WaterAirProblem, EnableGravity, true);
+SET_BOOL_PROP(WaterAirProblem, ProblemEnableGravity, true);
 
 // Use forward differences instead of central differences
 SET_INT_PROP(WaterAirProblem, NumericDifferenceMethod, +1);
diff --git a/test/boxmodels/2pni/injectionproblem2pni.hh b/test/boxmodels/2pni/injectionproblem2pni.hh
index 1b702e31ae..66435714cc 100644
--- a/test/boxmodels/2pni/injectionproblem2pni.hh
+++ b/test/boxmodels/2pni/injectionproblem2pni.hh
@@ -108,7 +108,7 @@ public:
 #endif
 
 // Enable gravity
-SET_BOOL_PROP(InjectionProblem2PNI, EnableGravity, true);
+SET_BOOL_PROP(InjectionProblem2PNI, ProblemEnableGravity, true);
 
 // write convergence behaviour to disk?
 SET_BOOL_PROP(InjectionProblem2PNI, NewtonWriteConvergence, true);
diff --git a/test/boxmodels/3p3c/infiltrationproblem.hh b/test/boxmodels/3p3c/infiltrationproblem.hh
index 9672d303a8..51688c7a09 100644
--- a/test/boxmodels/3p3c/infiltrationproblem.hh
+++ b/test/boxmodels/3p3c/infiltrationproblem.hh
@@ -57,7 +57,7 @@ SET_TYPE_PROP(InfiltrationProblem,
               Dumux::FluidSystems::H2OAirMesitylene<typename GET_PROP_TYPE(TypeTag, Scalar)>);
 
 // Enable gravity?
-SET_BOOL_PROP(InfiltrationProblem, EnableGravity, true);
+SET_BOOL_PROP(InfiltrationProblem, ProblemEnableGravity, true);
 
 // Write newton convergence?
 SET_BOOL_PROP(InfiltrationProblem, NewtonWriteConvergence, false);
diff --git a/test/boxmodels/3p3cni/columnxylolproblem.hh b/test/boxmodels/3p3cni/columnxylolproblem.hh
index 6b93730b79..dfe5754f62 100644
--- a/test/boxmodels/3p3cni/columnxylolproblem.hh
+++ b/test/boxmodels/3p3cni/columnxylolproblem.hh
@@ -66,7 +66,7 @@ SET_TYPE_PROP(ColumnProblem,
               Dumux::FluidSystems::H2OAirXylene<typename GET_PROP_TYPE(TypeTag, Scalar)>);
 
 // Enable gravity
-SET_BOOL_PROP(ColumnProblem, EnableGravity, true);
+SET_BOOL_PROP(ColumnProblem, ProblemEnableGravity, true);
 
 // Use forward differences instead of central differences
 SET_INT_PROP(ColumnProblem, NumericDifferenceMethod, 0);
diff --git a/test/boxmodels/3p3cni/kuevetteproblem.hh b/test/boxmodels/3p3cni/kuevetteproblem.hh
index 068fdc8514..03f07649ee 100644
--- a/test/boxmodels/3p3cni/kuevetteproblem.hh
+++ b/test/boxmodels/3p3cni/kuevetteproblem.hh
@@ -67,7 +67,7 @@ SET_TYPE_PROP(KuevetteProblem,
               Dumux::FluidSystems::H2OAirMesitylene<typename GET_PROP_TYPE(TypeTag, Scalar)>);
 
 // Enable gravity
-SET_BOOL_PROP(KuevetteProblem, EnableGravity, true);
+SET_BOOL_PROP(KuevetteProblem, ProblemEnableGravity, true);
 
 // Use central differences (backward -1, forward +1)
 SET_INT_PROP(KuevetteProblem, NumericDifferenceMethod, 0);
diff --git a/test/boxmodels/co2/heterogeneousproblem.hh b/test/boxmodels/co2/heterogeneousproblem.hh
index 1a64f551eb..a7dfdad6b3 100644
--- a/test/boxmodels/co2/heterogeneousproblem.hh
+++ b/test/boxmodels/co2/heterogeneousproblem.hh
@@ -92,7 +92,7 @@ SET_TYPE_PROP(HeterogeneousProblem, Model, CO2Model<TypeTag>);
 SET_TYPE_PROP(HeterogeneousProblem, VolumeVariables, CO2VolumeVariables<TypeTag>);
 
 // Enable gravity
-SET_BOOL_PROP(HeterogeneousProblem, EnableGravity, true);
+SET_BOOL_PROP(HeterogeneousProblem, ProblemEnableGravity, true);
 
 SET_BOOL_PROP(HeterogeneousProblem, EnableJacobianRecycling, false);
 SET_BOOL_PROP(HeterogeneousProblem, EnableVelocityOutput, false);
diff --git a/test/boxmodels/co2ni/heterogeneousproblemni.hh b/test/boxmodels/co2ni/heterogeneousproblemni.hh
index 909b8b2b09..f5e5ce015d 100644
--- a/test/boxmodels/co2ni/heterogeneousproblemni.hh
+++ b/test/boxmodels/co2ni/heterogeneousproblemni.hh
@@ -83,7 +83,7 @@ SET_TYPE_PROP(HeterogeneousProblem, Model, CO2NIModel<TypeTag>);
 SET_TYPE_PROP(HeterogeneousProblem, VolumeVariables, CO2NIVolumeVariables<TypeTag>);
 
 // Enable gravity
-SET_BOOL_PROP(HeterogeneousProblem, EnableGravity, true);
+SET_BOOL_PROP(HeterogeneousProblem, ProblemEnableGravity, true);
 
 SET_BOOL_PROP(HeterogeneousProblem, EnableJacobianRecycling, false);
 SET_BOOL_PROP(HeterogeneousProblem, EnableVelocityOutput, false);
diff --git a/test/boxmodels/mpnc/forchheimer1pproblem.hh b/test/boxmodels/mpnc/forchheimer1pproblem.hh
index c808d7a743..3557e65870 100644
--- a/test/boxmodels/mpnc/forchheimer1pproblem.hh
+++ b/test/boxmodels/mpnc/forchheimer1pproblem.hh
@@ -77,7 +77,7 @@ SET_BOOL_PROP(Forchheimer1pProblem, EnableDiffusion, false);
 SET_BOOL_PROP(Forchheimer1pProblem, NewtonEnableChop, true);
 
 // Enable gravity
-SET_BOOL_PROP(Forchheimer1pProblem, EnableGravity, false);
+SET_BOOL_PROP(Forchheimer1pProblem, ProblemEnableGravity, false);
 
 // Write Newton convergence to disk?
 SET_BOOL_PROP(Forchheimer1pProblem, NewtonWriteConvergence, false);
diff --git a/test/boxmodels/mpnc/forchheimer2pproblem.hh b/test/boxmodels/mpnc/forchheimer2pproblem.hh
index 1d79bff3b3..a0ed279273 100644
--- a/test/boxmodels/mpnc/forchheimer2pproblem.hh
+++ b/test/boxmodels/mpnc/forchheimer2pproblem.hh
@@ -77,7 +77,7 @@ SET_BOOL_PROP(Forchheimer2pProblem, EnableDiffusion, false);
 SET_BOOL_PROP(Forchheimer2pProblem, NewtonEnableChop, true);
 
 // Enable gravity
-SET_BOOL_PROP(Forchheimer2pProblem, EnableGravity, true);
+SET_BOOL_PROP(Forchheimer2pProblem, ProblemEnableGravity, true);
 
 // Write Newton convergence to disk?
 SET_BOOL_PROP(Forchheimer2pProblem, NewtonWriteConvergence, false);
diff --git a/test/boxmodels/mpnc/obstacleproblem.hh b/test/boxmodels/mpnc/obstacleproblem.hh
index 9ff2af01d7..4e6de8ce5a 100644
--- a/test/boxmodels/mpnc/obstacleproblem.hh
+++ b/test/boxmodels/mpnc/obstacleproblem.hh
@@ -76,7 +76,7 @@ SET_BOOL_PROP(ObstacleProblem, EnableDiffusion, false);
 SET_BOOL_PROP(ObstacleProblem, NewtonEnableChop, true);
 
 // Enable gravity
-SET_BOOL_PROP(ObstacleProblem, EnableGravity, true);
+SET_BOOL_PROP(ObstacleProblem, ProblemEnableGravity, true);
 
 // Write Newton convergence to disk?
 SET_BOOL_PROP(ObstacleProblem, NewtonWriteConvergence, false);
diff --git a/test/boxmodels/richards/richardslensproblem.hh b/test/boxmodels/richards/richardslensproblem.hh
index 56335e0300..728356a93b 100644
--- a/test/boxmodels/richards/richardslensproblem.hh
+++ b/test/boxmodels/richards/richardslensproblem.hh
@@ -64,7 +64,7 @@ public:
 };
 
 // Enable gravity
-SET_BOOL_PROP(RichardsLensProblem, EnableGravity, true);
+SET_BOOL_PROP(RichardsLensProblem, ProblemEnableGravity, true);
 
 // Enable partial reassembly of the Jacobian matrix
 SET_BOOL_PROP(RichardsLensProblem, EnablePartialReassemble, true);
diff --git a/test/common/generalproblem/generallensproblem.hh b/test/common/generalproblem/generallensproblem.hh
index 6d65dcc5ef..8cacd52310 100644
--- a/test/common/generalproblem/generallensproblem.hh
+++ b/test/common/generalproblem/generallensproblem.hh
@@ -98,7 +98,7 @@ public:
 };
 
 // Enable gravity
-SET_BOOL_PROP(GeneralLensProblem, EnableGravity, true);
+SET_BOOL_PROP(GeneralLensProblem, ProblemEnableGravity, true);
 
 ///////////////////////////////////////////////////
 // Box model TypeTag
diff --git a/test/decoupled/1p/test_1pproblem.hh b/test/decoupled/1p/test_1pproblem.hh
index 9fb12ba4ac..4613002be4 100644
--- a/test/decoupled/1p/test_1pproblem.hh
+++ b/test/decoupled/1p/test_1pproblem.hh
@@ -77,7 +77,7 @@ public:
 SET_TYPE_PROP(TestProblemOneP, SpatialParams, Dumux::TestOnePSpatialParams<TypeTag>);
 
 // Enable gravity
-SET_BOOL_PROP(TestProblemOneP, EnableGravity, false);
+SET_BOOL_PROP(TestProblemOneP, ProblemEnableGravity, false);
 
 //Set the problem
 SET_TYPE_PROP(TestProblemOneP, Problem, Dumux::TestProblemOneP<TypeTag>);
diff --git a/test/decoupled/1p/test_diffusionproblem.hh b/test/decoupled/1p/test_diffusionproblem.hh
index 934f6ed778..c5481a4ff5 100644
--- a/test/decoupled/1p/test_diffusionproblem.hh
+++ b/test/decoupled/1p/test_diffusionproblem.hh
@@ -85,7 +85,7 @@ public:
 };
 
 // Enable gravity
-SET_BOOL_PROP(FVVelocity2PTestProblem, EnableGravity, false);
+SET_BOOL_PROP(FVVelocity2PTestProblem, ProblemEnableGravity, false);
 
 
 // set the types for the MPFA-O FV method
@@ -122,7 +122,7 @@ public:
 };
 
 // Enable gravity
-SET_BOOL_PROP(FVMPFAOVelocity2PTestProblem, EnableGravity, false);
+SET_BOOL_PROP(FVMPFAOVelocity2PTestProblem, ProblemEnableGravity, false);
 
 // set the types for the mimetic FD method
 NEW_TYPE_TAG(MimeticPressure2PTestProblem, INHERITS_FROM(MimeticPressureTwoP, TestDiffusionSpatialParams));
@@ -156,7 +156,7 @@ public:
 };
 
 // Enable gravity
-SET_BOOL_PROP(MimeticPressure2PTestProblem, EnableGravity, false);
+SET_BOOL_PROP(MimeticPressure2PTestProblem, ProblemEnableGravity, false);
 
 }
 
diff --git a/test/decoupled/2p/test_impesadaptiveproblem.hh b/test/decoupled/2p/test_impesadaptiveproblem.hh
index 03b97e1f93..46aed69490 100644
--- a/test/decoupled/2p/test_impesadaptiveproblem.hh
+++ b/test/decoupled/2p/test_impesadaptiveproblem.hh
@@ -85,7 +85,7 @@ public:
 };
 
 // Enable gravity
-SET_BOOL_PROP(TestIMPESAdaptiveProblem, EnableGravity, false);
+SET_BOOL_PROP(TestIMPESAdaptiveProblem, ProblemEnableGravity, false);
 
 //SET_BOOL_PROP(TestIMPESAdaptiveProblem, EnableCompressibility, true);
 
diff --git a/test/decoupled/2p/test_impesproblem.hh b/test/decoupled/2p/test_impesproblem.hh
index fe0c9e62f2..aa50691a63 100644
--- a/test/decoupled/2p/test_impesproblem.hh
+++ b/test/decoupled/2p/test_impesproblem.hh
@@ -120,7 +120,7 @@ public:
 };
 
 // Enable gravity
-SET_BOOL_PROP(IMPESTestProblem, EnableGravity, false);
+SET_BOOL_PROP(IMPESTestProblem, ProblemEnableGravity, false);
 
 SET_TYPE_PROP(IMPESTestProblem, EvalCflFluxFunction, Dumux::EvalCflFluxCoats<TypeTag>);
 
diff --git a/test/decoupled/2p/test_transportproblem.hh b/test/decoupled/2p/test_transportproblem.hh
index 0b89335776..52a62ac05b 100644
--- a/test/decoupled/2p/test_transportproblem.hh
+++ b/test/decoupled/2p/test_transportproblem.hh
@@ -83,7 +83,7 @@ SET_INT_PROP(TransportTestProblem, VelocityFormulation,
         DecoupledTwoPCommonIndices::velocityTotal);
 
 // Disable gravity
-SET_BOOL_PROP(TransportTestProblem, EnableGravity, false);
+SET_BOOL_PROP(TransportTestProblem, ProblemEnableGravity, false);
 
 SET_SCALAR_PROP(TransportTestProblem, CFLFactor, 1.0);
 }
diff --git a/test/decoupled/2p2c/test_adaptive2p2cproblem.hh b/test/decoupled/2p2c/test_adaptive2p2cproblem.hh
index 7ecb42b354..1c1125397f 100644
--- a/test/decoupled/2p2c/test_adaptive2p2cproblem.hh
+++ b/test/decoupled/2p2c/test_adaptive2p2cproblem.hh
@@ -90,7 +90,7 @@ SET_PROP(Adaptive2p2c, Components) : public GET_PROP(TypeTag, DefaultComponents)
 SET_TYPE_PROP(Adaptive2p2c, AdaptionIndicator, GridAdaptionIndicator2P<TypeTag>);
 
 // Enable gravity
-SET_BOOL_PROP(Adaptive2p2c, EnableGravity, true);
+SET_BOOL_PROP(Adaptive2p2c, ProblemEnableGravity, true);
 SET_INT_PROP(Adaptive2p2c,
         BoundaryMobility,
         GET_PROP_TYPE(TypeTag, Indices)::permDependent);
diff --git a/test/decoupled/2p2c/test_dec2p2cproblem.hh b/test/decoupled/2p2c/test_dec2p2cproblem.hh
index c4e51c7060..f48038ac47 100644
--- a/test/decoupled/2p2c/test_dec2p2cproblem.hh
+++ b/test/decoupled/2p2c/test_dec2p2cproblem.hh
@@ -103,7 +103,7 @@ SET_PROP(TestDecTwoPTwoCProblem, Components) : public GET_PROP(TypeTag, DefaultC
 //SET_TYPE_PROP(TestDecTwoPTwoCProblem, LinearSolver, IMPETBiCGStabILU0Solver<TypeTag> );
 
 // Enable gravity
-SET_BOOL_PROP(TestDecTwoPTwoCProblem, EnableGravity, true);
+SET_BOOL_PROP(TestDecTwoPTwoCProblem, ProblemEnableGravity, true);
 SET_BOOL_PROP(TestDecTwoPTwoCProblem, EnableCapillarity, true);
 SET_INT_PROP(TestDecTwoPTwoCProblem,
         BoundaryMobility,
diff --git a/test/decoupled/2p2c/test_multiphysics2p2cproblem.hh b/test/decoupled/2p2c/test_multiphysics2p2cproblem.hh
index de1d7656c1..0eb6cf51b3 100644
--- a/test/decoupled/2p2c/test_multiphysics2p2cproblem.hh
+++ b/test/decoupled/2p2c/test_multiphysics2p2cproblem.hh
@@ -105,7 +105,7 @@ SET_PROP(TestMultTwoPTwoCProblem, Components) : public GET_PROP(TypeTag, Default
 };
 
 // Enable gravity
-SET_BOOL_PROP(TestMultTwoPTwoCProblem, EnableGravity, true);
+SET_BOOL_PROP(TestMultTwoPTwoCProblem, ProblemEnableGravity, true);
 SET_BOOL_PROP(TestMultTwoPTwoCProblem, EnableCapillarity, true);
 SET_INT_PROP(TestMultTwoPTwoCProblem,
              BoundaryMobility,
diff --git a/test/freeflow/navierstokes/navierstokestestproblem.hh b/test/freeflow/navierstokes/navierstokestestproblem.hh
index b27f878721..1e00c860ff 100644
--- a/test/freeflow/navierstokes/navierstokestestproblem.hh
+++ b/test/freeflow/navierstokes/navierstokestestproblem.hh
@@ -80,7 +80,7 @@ namespace Dumux
     SET_TYPE_PROP(BoxStokes, Scalar, double);
 
     // Disable gravity
-    SET_BOOL_PROP(NavierStokesTestProblem, EnableGravity, false);
+    SET_BOOL_PROP(NavierStokesTestProblem, ProblemEnableGravity, false);
   }
 
   /*!
diff --git a/test/freeflow/stokes/stokestestproblem.hh b/test/freeflow/stokes/stokestestproblem.hh
index b355f6a5af..f34157687f 100644
--- a/test/freeflow/stokes/stokestestproblem.hh
+++ b/test/freeflow/stokes/stokestestproblem.hh
@@ -68,7 +68,7 @@ SET_TYPE_PROP(BoxStokes, Scalar, double);
 SET_SCALAR_PROP(StokesTestProblem, StokesStabilizationAlpha, -1.0);
 
 // Enable gravity
-SET_BOOL_PROP(StokesTestProblem, EnableGravity, false);
+SET_BOOL_PROP(StokesTestProblem, ProblemEnableGravity, false);
 }
 
 /*!
diff --git a/test/freeflow/stokes2c/stokes2ctestproblem.hh b/test/freeflow/stokes2c/stokes2ctestproblem.hh
index 7d5e85829f..1302a047b6 100644
--- a/test/freeflow/stokes2c/stokes2ctestproblem.hh
+++ b/test/freeflow/stokes2c/stokes2ctestproblem.hh
@@ -66,7 +66,7 @@ SET_PROP(BoxStokes2c, FluidSystem)
 SET_SCALAR_PROP(BoxStokes2c, StokesStabilizationAlpha, -1.0);
 
 // Enable gravity
-SET_BOOL_PROP(Stokes2cTestProblem, EnableGravity, false);
+SET_BOOL_PROP(Stokes2cTestProblem, ProblemEnableGravity, false);
 }
 
 /*!
diff --git a/test/freeflow/stokes2cni/stokes2cnitestproblem.hh b/test/freeflow/stokes2cni/stokes2cnitestproblem.hh
index 45903827ec..7a2824243f 100644
--- a/test/freeflow/stokes2cni/stokes2cnitestproblem.hh
+++ b/test/freeflow/stokes2cni/stokes2cnitestproblem.hh
@@ -65,7 +65,7 @@ SET_PROP(BoxStokes2cni, FluidSystem)
 SET_SCALAR_PROP(BoxStokes2cni, StokesStabilizationAlpha, -1.0);
 
 // Enable gravity
-SET_BOOL_PROP(Stokes2cniTestProblem, EnableGravity, true);
+SET_BOOL_PROP(Stokes2cniTestProblem, ProblemEnableGravity, true);
 }
 
 /*!
-- 
GitLab