summaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/attribute/attributemanager/attributemanager_test.cpp
diff options
context:
space:
mode:
authorGeir Storli <geirst@yahoo-inc.com>2016-09-15 09:28:36 +0200
committerGeir Storli <geirst@yahoo-inc.com>2016-09-15 09:28:36 +0200
commit0d15262410021732ea150f057cf3213751db4d98 (patch)
tree93c2eb27d171dd2aa274670ee15c812a92e5eff1 /searchlib/src/tests/attribute/attributemanager/attributemanager_test.cpp
parent6f3115944901cc50c604f6b165724958dddb51f2 (diff)
Change to use eval::ValueType instead of tensor::TensorType.
Diffstat (limited to 'searchlib/src/tests/attribute/attributemanager/attributemanager_test.cpp')
-rw-r--r--searchlib/src/tests/attribute/attributemanager/attributemanager_test.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/searchlib/src/tests/attribute/attributemanager/attributemanager_test.cpp b/searchlib/src/tests/attribute/attributemanager/attributemanager_test.cpp
index bf247668843..24b1d657d2f 100644
--- a/searchlib/src/tests/attribute/attributemanager/attributemanager_test.cpp
+++ b/searchlib/src/tests/attribute/attributemanager/attributemanager_test.cpp
@@ -17,7 +17,6 @@ using namespace config;
using namespace vespa::config::search;
using namespace search;
using namespace search::attribute;
-using vespalib::tensor::TensorType;
using std::shared_ptr;
typedef BasicType BT;
@@ -298,7 +297,7 @@ AttributeManagerTest::testConfigConvert()
a.datatype = CACA::TENSOR;
a.tensortype = "tensor(x[5])";
AttributeVector::Config out = ConfigConverter::convert(a);
- EXPECT_EQUAL("tensor(x[5])", out.tensorType().toSpec());
+ EXPECT_EQUAL("tensor(x[5])", out.tensorType().to_spec());
}
}