diff --git a/MathLib/Integration/GaussLegendreTet.cpp b/MathLib/Integration/GaussLegendreTet.cpp
index 0ad20e54daf98968b0ca6de8bf7044224c70a355..b81cc7272b35ca1910efb2d5cfbea3a28e116835 100644
--- a/MathLib/Integration/GaussLegendreTet.cpp
+++ b/MathLib/Integration/GaussLegendreTet.cpp
@@ -11,9 +11,9 @@
 
 namespace MathLib
 {
-
-template <> const std::array<std::array<double, 3>, GaussLegendreTet<1>::NPoints>
-GaussLegendreTet<1>::X = {{{{1./3., 1./3., 1./3.}}}};
+template <>
+const std::array<std::array<double, 3>, GaussLegendreTet<1>::NPoints>
+    GaussLegendreTet<1>::X = {{{{1. / 4., 1. / 4., 1. / 4.}}}};
 template <>
 double const GaussLegendreTet<1>::W[1] = {1. / 6.};