Skip to content

Commit c77da5e

Browse files
committed
A gtest limitation.
1 parent b20b1a3 commit c77da5e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

numerics/fixed_arrays_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class FixedArraysTest : public ::testing::Test {
5959
FixedUpperTriangularMatrix<double, 4> u4_;
6060
};
6161

62-
TEST(FixedArraysTest, AlgebraConcepts) {
62+
TEST_F(FixedArraysTest, AlgebraConcepts) {
6363
static_assert(affine<FixedMatrix<double, 2, 3>>);
6464
static_assert(affine<FixedMatrix<double, 3, 3>>);
6565
static_assert(affine<FixedMatrix<Length, 3, 3>>);
@@ -79,7 +79,7 @@ TEST(FixedArraysTest, AlgebraConcepts) {
7979
static_assert(!homogeneous_field<FixedMatrix<Length, 3, 3>>);
8080
}
8181

82-
TEST(FixedArraysTest, LinearAlgebraConcepts) {
82+
TEST_F(FixedArraysTest, LinearAlgebraConcepts) {
8383
static_assert(!homogeneous_vector_space<FixedMatrix<double, 3, 3>,
8484
FixedMatrix<double, 3, 3>>);
8585
static_assert(homogeneous_vector_space<FixedMatrix<Length, 3, 3>, Time>);

0 commit comments

Comments
 (0)