Michele Caini 2 лет назад
Родитель
Сommit
25e844fadd
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      test/entt/poly/poly.cpp

+ 2 - 2
test/entt/poly/poly.cpp

@@ -298,7 +298,7 @@ TYPED_TEST(Poly, Reference) {
     ASSERT_EQ(poly->mul(3), 3);
     ASSERT_EQ(poly->mul(3), 3);
 }
 }
 
 
-ENTT_DEBUG_TYPED_TEST(Poly, ConstReference) {
+TYPED_TEST(Poly, ConstReference) {
     using poly_type = typename TestFixture::template type<>;
     using poly_type = typename TestFixture::template type<>;
 
 
     impl instance{};
     impl instance{};
@@ -319,7 +319,7 @@ ENTT_DEBUG_TYPED_TEST(Poly, ConstReference) {
     ASSERT_EQ(poly->mul(3), 0);
     ASSERT_EQ(poly->mul(3), 0);
 }
 }
 
 
-TYPED_TEST(PolyDeathTest, ConstReference) {
+ENTT_DEBUG_TYPED_TEST(PolyDeathTest, ConstReference) {
     using poly_type = typename TestFixture::template type<>;
     using poly_type = typename TestFixture::template type<>;
 
 
     impl instance{};
     impl instance{};