aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/datastore/array_store
diff options
context:
space:
mode:
authorHåvard Pettersen <havardpe@yahooinc.com>2022-09-21 09:43:28 +0000
committerHåvard Pettersen <havardpe@yahooinc.com>2022-09-21 11:47:13 +0000
commit95e8f34f7ee1e7df1db7ef52a189245289d51598 (patch)
tree20297f587675316621a4dd943f75923ad85de6cd /vespalib/src/tests/datastore/array_store
parent04b195343586990e6a612d33e98c7fa8603ee0f4 (diff)
use more concepts
Diffstat (limited to 'vespalib/src/tests/datastore/array_store')
-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)) {