diff --git a/tests/UnitTestColor.cpp b/tests/UnitTestColor.cpp index 574e9ed..a78276d 100644 --- a/tests/UnitTestColor.cpp +++ b/tests/UnitTestColor.cpp @@ -7,7 +7,7 @@ using namespace omath; -class UnitTestColor final : public ::testing::Test +class UnitTestColor : public ::testing::Test { protected: Color color1; diff --git a/tests/UnitTestMatrix.cpp b/tests/UnitTestMatrix.cpp index 92c2781..fb9566f 100644 --- a/tests/UnitTestMatrix.cpp +++ b/tests/UnitTestMatrix.cpp @@ -8,7 +8,7 @@ using namespace omath; -class UnitTestMatrix final : public ::testing::Test +class UnitTestMatrix : public ::testing::Test { protected: Matrix m1; diff --git a/tests/UnitTestVector2.cpp b/tests/UnitTestVector2.cpp index 1e08947..3e9740d 100644 --- a/tests/UnitTestVector2.cpp +++ b/tests/UnitTestVector2.cpp @@ -9,7 +9,7 @@ using namespace omath; -class UnitTestVector2 final : public ::testing::Test +class UnitTestVector2 : public ::testing::Test { protected: Vector2 v1; diff --git a/tests/UnitTestVector3.cpp b/tests/UnitTestVector3.cpp index 75474cf..daa59dc 100644 --- a/tests/UnitTestVector3.cpp +++ b/tests/UnitTestVector3.cpp @@ -7,7 +7,7 @@ using namespace omath; -class UnitTestVector3 final : public ::testing::Test +class UnitTestVector3 : public ::testing::Test { protected: Vector3 v1;