diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/core/common/RttiTest.cpp (renamed from test/core/managed/RttiTest.cpp) | 2 | ||||
-rw-r--r-- | test/core/managed/ManagedTest.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/core/managed/RttiTest.cpp b/test/core/common/RttiTest.cpp index 091bdea..64b4bb0 100644 --- a/test/core/managed/RttiTest.cpp +++ b/test/core/common/RttiTest.cpp @@ -22,7 +22,7 @@ #include <gtest/gtest.h> -#include <core/managed/Rtti.hpp> +#include <core/common/Rtti.hpp> namespace ousia { diff --git a/test/core/managed/ManagedTest.cpp b/test/core/managed/ManagedTest.cpp index c88cf7a..61b89ef 100644 --- a/test/core/managed/ManagedTest.cpp +++ b/test/core/managed/ManagedTest.cpp @@ -94,7 +94,7 @@ TEST(Managed, type) ASSERT_EQ(&Type2, &m2->type()); ASSERT_EQ(&Type3, &m3->type()); ASSERT_EQ(&Type4, &m4->type()); - ASSERT_EQ(&RttiBase::None, &m5->type()); + ASSERT_EQ(&RttiTypes::None, &m5->type()); ASSERT_EQ(&Type1, &typeOf<TypeTestManaged1>()); ASSERT_EQ(&Type1, &typeOf(*m1)); |