diff --git a/dumux/material/fluidmatrixinteractions/2p/thermalconductivityjohansen.hh b/dumux/material/fluidmatrixinteractions/2p/thermalconductivityjohansen.hh
index 2bee93d2ff5e5d003b10628feaf21f7b3f574a6d..aa52a5f3220de87e21e72dc2cd62f6c0a9ddd281 100644
--- a/dumux/material/fluidmatrixinteractions/2p/thermalconductivityjohansen.hh
+++ b/dumux/material/fluidmatrixinteractions/2p/thermalconductivityjohansen.hh
@@ -81,7 +81,7 @@ public:
         static_assert(FluidSystem::numPhases == 2, "ThermalConductivitySomerton only works for two-phase fluid systems!");
         // TODO: there should be an assertion that the indices are correct and 0 is actually the wetting phase!
 
-        const Scalar sw = volVars.saturation(volVars.wettingPhaseIdx());
+        const Scalar sw = volVars.saturation(volVars.wettingPhase());
         const Scalar lambdaW = volVars.fluidThermalConductivity(volVars.wettingPhase());
         const Scalar lambdaN = volVars.fluidThermalConductivity(1-volVars.wettingPhase());
         const Scalar lambdaSolid = volVars.solidThermalConductivity();