aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/attribute/enum_comparator/enum_comparator_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/tests/attribute/enum_comparator/enum_comparator_test.cpp')
-rw-r--r--searchlib/src/tests/attribute/enum_comparator/enum_comparator_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/searchlib/src/tests/attribute/enum_comparator/enum_comparator_test.cpp b/searchlib/src/tests/attribute/enum_comparator/enum_comparator_test.cpp
index f3082e858a3..4e1e1c6d792 100644
--- a/searchlib/src/tests/attribute/enum_comparator/enum_comparator_test.cpp
+++ b/searchlib/src/tests/attribute/enum_comparator/enum_comparator_test.cpp
@@ -9,7 +9,7 @@
#include <vespa/log/log.h>
LOG_SETUP("enum_comparator_test");
-using namespace search::btree;
+using namespace vespalib::btree;
namespace search {
@@ -20,8 +20,8 @@ using StringEnumStore = EnumStoreT<const char*>;
using EnumIndex = IEnumStore::Index;
using TreeType = BTreeRoot<EnumIndex, BTreeNoLeafData,
- btree::NoAggregated,
- const datastore::EntryComparatorWrapper>;
+ vespalib::btree::NoAggregated,
+ const vespalib::datastore::EntryComparatorWrapper>;
using NodeAllocator = TreeType::NodeAllocatorType;
class Test : public vespalib::TestApp {