aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/datastore/array_store/array_store_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vespalib/src/tests/datastore/array_store/array_store_test.cpp')
-rw-r--r--vespalib/src/tests/datastore/array_store/array_store_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/vespalib/src/tests/datastore/array_store/array_store_test.cpp b/vespalib/src/tests/datastore/array_store/array_store_test.cpp
index 9478ef93327..e9dd5860ece 100644
--- a/vespalib/src/tests/datastore/array_store/array_store_test.cpp
+++ b/vespalib/src/tests/datastore/array_store/array_store_test.cpp
@@ -158,8 +158,8 @@ using ByteFixture = Fixture<uint8_t>;
TEST("require that we test with trivial and non-trivial types")
{
- EXPECT_TRUE(vespalib::can_skip_destruction<NumberFixture::value_type>::value);
- EXPECT_FALSE(vespalib::can_skip_destruction<StringFixture::value_type>::value);
+ EXPECT_TRUE(vespalib::can_skip_destruction<NumberFixture::value_type>);
+ EXPECT_FALSE(vespalib::can_skip_destruction<StringFixture::value_type>);
}
TEST_F("control static sizes", NumberFixture(3)) {