diff --git a/tests/test_Vector.cpp b/tests/test_Vector.cpp
index 4384acd0660e1897b4aa0de54926b724c21c08dc..15e02d0eb2c7f9c0ad28af2cdb365ed790bd563f 100644
--- a/tests/test_Vector.cpp
+++ b/tests/test_Vector.cpp
@@ -262,22 +262,4 @@ TEST_CASE("Vector", "[algebra]")
     REQUIRE(z[3] == 5);
     REQUIRE(z[4] == 4);
   }
-
-  //   REQUIRE(l2Norm(TinyVector<2, double>(3, 4)) == Approx(5).epsilon(1E-14));
-
-  //   SECTION("checking for cross product")
-  //   {
-  //     const TinyVector<3, int> a(1, -2, 4);
-  //     const TinyVector<3, int> b(3, 1, 6);
-  //     REQUIRE(crossProduct(a, b) == TinyVector<3, int>(-16, 6, 7));
-  //   }
-
-  // #ifndef NDEBUG
-  //   SECTION("checking for bounds validation")
-  //   {
-  //     REQUIRE_THROWS_AS(x[4] = 0, AssertError);
-  //     const TinyVector<3, int>& const_x = x;
-  //     REQUIRE_THROWS_AS(const_x[-1], AssertError);
-  //   }
-  // #endif   // NDEBUG
 }