From f0a52d23386564a83518df7a00b5f7a7f9e42d46 Mon Sep 17 00:00:00 2001
From: Gabriele Seitz <seitz@molly.site>
Date: Wed, 31 Jan 2018 12:40:39 +0100
Subject: [PATCH] [test][co2] Use NumEqVector for sources and neumann

---
 test/porousmediumflow/co2/implicit/heterogeneousproblem.hh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/test/porousmediumflow/co2/implicit/heterogeneousproblem.hh b/test/porousmediumflow/co2/implicit/heterogeneousproblem.hh
index e5bd91d321..a68bd010e9 100644
--- a/test/porousmediumflow/co2/implicit/heterogeneousproblem.hh
+++ b/test/porousmediumflow/co2/implicit/heterogeneousproblem.hh
@@ -153,7 +153,7 @@ class HeterogeneousProblem : public PorousMediumFlowProblem<TypeTag>
 #endif
 
     using PrimaryVariables = typename GET_PROP_TYPE(TypeTag, PrimaryVariables);
-    using NeumannFluxes = typename GET_PROP_TYPE(TypeTag, NumEqVector);
+    using NumEqVector = typename GET_PROP_TYPE(TypeTag, NumEqVector);
     using BoundaryTypes = typename GET_PROP_TYPE(TypeTag, BoundaryTypes);
     using Element = typename GridView::template Codim<0>::Entity;
     using FVGridGeometry = typename GET_PROP_TYPE(TypeTag, FVGridGeometry);
@@ -363,14 +363,14 @@ public:
      * in normal direction of each phase. Negative values mean influx.
      * E.g. for the mass balance that would the mass flux in \f$ [ kg / (m^2 \cdot s)] \f$.
      */
-    NeumannFluxes neumann(const Element& element,
+    NumEqVector neumann(const Element& element,
                           const FVElementGeometry& fvGeometry,
                           const ElementVolumeVariables& elemVolvars,
                           const SubControlVolumeFace& scvf) const
     {
         const auto boundaryId = scvf.boundaryFlag();
 
-        NeumannFluxes fluxes(0.0);
+        NumEqVector fluxes(0.0);
          // kg/(m^2*s) or mole/(m^2*s) depending on useMoles
         if (boundaryId == injectionBottom_)
         {
-- 
GitLab