summaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/features/constant
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/tests/features/constant')
-rw-r--r--searchlib/src/tests/features/constant/constant_test.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/searchlib/src/tests/features/constant/constant_test.cpp b/searchlib/src/tests/features/constant/constant_test.cpp
index a10f76e25ba..4a88fde58ce 100644
--- a/searchlib/src/tests/features/constant/constant_test.cpp
+++ b/searchlib/src/tests/features/constant/constant_test.cpp
@@ -19,7 +19,6 @@ using namespace search::features;
using vespalib::eval::Function;
using vespalib::eval::Value;
using vespalib::eval::DoubleValue;
-using vespalib::eval::TensorValue;
using vespalib::eval::TensorSpec;
using vespalib::eval::ValueType;
using vespalib::tensor::DefaultTensorEngine;
@@ -39,7 +38,7 @@ Tensor::UP createTensor(const TensorCells &cells,
}
Tensor::UP make_tensor(const TensorSpec &spec) {
- auto tensor = DefaultTensorEngine::ref().create(spec);
+ auto tensor = DefaultTensorEngine::ref().from_spec(spec);
return Tensor::UP(dynamic_cast<Tensor*>(tensor.release()));
}
@@ -80,7 +79,7 @@ struct ExecFixture
ValueType type(tensor->getType());
test.getIndexEnv().addConstantValue(name,
std::move(type),
- std::make_unique<TensorValue>(std::move(tensor)));
+ std::move(tensor));
}
void addDouble(const vespalib::string &name, const double value) {