diff --git a/dumux/implicit/properties.hh b/dumux/implicit/properties.hh
index a4aff8cbeb7a4a3fb1f1e95e7b7a37e9cd515abb..ddb6ce0acfbe3cf6c6f781152429579dafe72bc0 100644
--- a/dumux/implicit/properties.hh
+++ b/dumux/implicit/properties.hh
@@ -98,11 +98,10 @@ NEW_PROP_TAG(SolutionDependentMolecularDiffusion); //!< specifies if the paramet
 NEW_PROP_TAG(EnableEnergyBalance); //! Specifies if the model solves an energy equation
 NEW_PROP_TAG(HeatConductionType); //! The type for the calculation of the heat conduction fluxes
 NEW_PROP_TAG(SolutionDependentHeatConduction); //!< specifies if the parameters for the heat conduction fluxes depend on the solution
-NEW_PROP_TAG(EvaluatePermeabilityAtScvfIP); //!< if the permeability has to be evaluated at the scvf integration point (for evaluating analytical fields)
 
 // specify if we evaluate the permeability in the volume (for discontinuous fields)
 // or at the scvf center for analytical permeability fields (e.g. convergence studies)
-NEW_PROP_TAG(EvaluatePermeabilityAtScvfCenter);
+NEW_PROP_TAG(EvaluatePermeabilityAtScvfIP);
 
 // vtk output
 NEW_PROP_TAG(VtkAddVelocity); //!< specifies if an element velocity it reconstructed for the output
diff --git a/test/mixeddimension/embedded/1p_1p/bloodflowproblem.hh b/test/mixeddimension/embedded/1p_1p/bloodflowproblem.hh
index ca07dc3dc7fccb22472688622ac4cf5e64912c0e..17c49ef655a653ffad5013ff2a219bed03f19cb7 100644
--- a/test/mixeddimension/embedded/1p_1p/bloodflowproblem.hh
+++ b/test/mixeddimension/embedded/1p_1p/bloodflowproblem.hh
@@ -65,7 +65,7 @@ public:
 SET_TYPE_PROP(BloodFlowProblem, SpatialParams, BloodFlowSpatialParams<TypeTag>);
 
 // evaluate analytical permeability field at scvf center
-SET_BOOL_PROP(BloodFlowProblem, EvaluatePermeabilityAtScvfCenter, true);
+SET_BOOL_PROP(BloodFlowProblem, EvaluatePermeabilityAtScvfIP, true);
 
 // disable gravity
 SET_BOOL_PROP(BloodFlowProblem, ProblemEnableGravity, false);