diff --git a/dumux/material/fluidsystems/2p1c.hh b/dumux/material/fluidsystems/2p1c.hh
index f40e9f166bd6c5aab6e93f060a73854c5f7d04e1..23db53acd51e7df2592c079774974632dcc2ef5d 100644
--- a/dumux/material/fluidsystems/2p1c.hh
+++ b/dumux/material/fluidsystems/2p1c.hh
@@ -259,7 +259,7 @@ public:
         if (Component::isTabulated)
         {
             Component::init(tempMin, tempMax, nTemp,
-                               pressMin, pressMax, nPress);
+                            pressMin, pressMax, nPress);
         }
     }
 
@@ -287,8 +287,8 @@ public:
         {
             return Component::gasDensity(temperature, pressure);
         }
-        else DUNE_THROW(Dune::NotImplemented,
-                   "wrong index");
+        else
+            DUNE_THROW(Dune::NotImplemented, "wrong index");
     }
 
     using Base::molarDensity;
@@ -310,7 +310,6 @@ public:
             return Component::liquidMolarDensity(temperature, pressure);
 
         return Component::gasMolarDensity(temperature, pressure);
-
     }
 
     /*!
@@ -330,15 +329,16 @@ public:
         Scalar pressure = fluidState.pressure(phaseIdx);
 
         // liquid phase
-        if (phaseIdx == liquidPhaseIdx) {
+        if (phaseIdx == liquidPhaseIdx)
+        {
             return Component::liquidViscosity(temperature, pressure);
         }
         else if (phaseIdx == gasPhaseIdx) // gas phase
         {
-            return Component::gasViscosity(temperature, pressure) ;
+            return Component::gasViscosity(temperature, pressure);
         }
-        else DUNE_THROW(Dune::NotImplemented,
-                   "wrong index");
+        else
+            DUNE_THROW(Dune::NotImplemented, "wrong index");
     }
 
     /*!
@@ -352,9 +352,9 @@ public:
                                    const unsigned int phaseIdx)
     {
         assert(0 <= phaseIdx  && phaseIdx < numPhases);
-        Scalar pressure = fluidState.pressure(gasPhaseIdx) ;
+        Scalar pressure = fluidState.pressure(gasPhaseIdx);
 
-        return Component::vaporTemperature(pressure) ;
+        return Component::vaporTemperature(pressure);
     }
 
     /*!
@@ -444,9 +444,7 @@ public:
                                              int compIIdx,
                                              int compJIdx)
 
-    {
-        DUNE_THROW(Dune::NotImplemented, "Binary Diffusion coefficients");
-    }
+    { DUNE_THROW(Dune::NotImplemented, "Binary Diffusion coefficients"); }
 
     /*!
      * \brief Calculate specific enthalpy [J/kg].
@@ -462,7 +460,8 @@ public:
         assert(0 <= phaseIdx  && phaseIdx < numPhases);
 
         // liquid phase
-        if (phaseIdx == liquidPhaseIdx) {
+        if (phaseIdx == liquidPhaseIdx)
+        {
             return Component::liquidEnthalpy(fluidState.temperature(phaseIdx),
                                              fluidState.pressure(phaseIdx));
         }
@@ -471,8 +470,8 @@ public:
             return Component::gasEnthalpy(fluidState.temperature(phaseIdx),
                                           fluidState.pressure(phaseIdx));
         }
-        else DUNE_THROW(Dune::NotImplemented,
-                   "wrong index");
+        else
+            DUNE_THROW(Dune::NotImplemented, "wrong index");
     }
 
     /*!
@@ -499,8 +498,8 @@ public:
             return Component::gasThermalConductivity(fluidState.temperature(phaseIdx),
                                                      fluidState.pressure(phaseIdx)); //0.0248;
         }
-        else DUNE_THROW(Dune::NotImplemented,
-                   "wrong index");
+        else
+            DUNE_THROW(Dune::NotImplemented, "wrong index");
     }
 
     /*!
diff --git a/test/porousmediumflow/2p1c/implicit/steaminjectionproblem.hh b/test/porousmediumflow/2p1c/implicit/steaminjectionproblem.hh
index 1ca802b5a2b78b32f4ae3be005440567848d979c..a052c282c54f3d037e9d9d5706f4aff7f49acb33 100644
--- a/test/porousmediumflow/2p1c/implicit/steaminjectionproblem.hh
+++ b/test/porousmediumflow/2p1c/implicit/steaminjectionproblem.hh
@@ -118,9 +118,7 @@ public:
      */
     InjectionProblem(std::shared_ptr<const FVGridGeometry> fvGridGeometry)
     : ParentType(fvGridGeometry)
-    {
-        FluidSystem::init();
-    }
+    { FluidSystem::init(); }
 
     /*!
      * \name Problem parameters
@@ -130,12 +128,10 @@ public:
 
     //! \copydoc Dumux::FVProblem::source()
     NumEqVector source(const Element &element,
-                   const FVElementGeometry& fvGeometry,
-                   const ElementVolumeVariables& elemVolVars,
-                   const SubControlVolume &scv) const
-    {
-          return NumEqVector(0.0);
-    }
+                       const FVElementGeometry& fvGeometry,
+                       const ElementVolumeVariables& elemVolVars,
+                       const SubControlVolume &scv) const
+    { return NumEqVector(0.0); }
 
     /*!
      * \name Boundary conditions