summaryrefslogtreecommitdiffstats
path: root/eval/src/tests/instruction/dense_simple_expand_function/dense_simple_expand_function_test.cpp
diff options
context:
space:
mode:
authorArne H Juul <arnej27959@users.noreply.github.com>2021-02-05 19:29:18 +0100
committerGitHub <noreply@github.com>2021-02-05 19:29:18 +0100
commitfbc302824871c911cd5ceb6c6587453cd15a3313 (patch)
treebbb9ca4ea4af1c543913cff3afc92042aaa02712 /eval/src/tests/instruction/dense_simple_expand_function/dense_simple_expand_function_test.cpp
parentff2ae195a7fc9e42cbdd49412c20a08f77d04763 (diff)
parent1bcb4ffac595d07c890aea8a03f6752bc251b2ad (diff)
Merge pull request #16423 from vespa-engine/havardpe/param-repo-adjust-add-options
adjust param repo add options and remove seq_bias
Diffstat (limited to 'eval/src/tests/instruction/dense_simple_expand_function/dense_simple_expand_function_test.cpp')
-rw-r--r--eval/src/tests/instruction/dense_simple_expand_function/dense_simple_expand_function_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/eval/src/tests/instruction/dense_simple_expand_function/dense_simple_expand_function_test.cpp b/eval/src/tests/instruction/dense_simple_expand_function/dense_simple_expand_function_test.cpp
index 132f88076f6..e8f68e5021e 100644
--- a/eval/src/tests/instruction/dense_simple_expand_function/dense_simple_expand_function_test.cpp
+++ b/eval/src/tests/instruction/dense_simple_expand_function/dense_simple_expand_function_test.cpp
@@ -18,9 +18,9 @@ const ValueBuilderFactory &prod_factory = FastValueBuilderFactory::get();
EvalFixture::ParamRepo make_params() {
return EvalFixture::ParamRepo()
- .add("a", GenSpec().seq_bias(1.5).gen())
- .add("sparse", GenSpec().map("x", {"a"}).gen())
- .add("mixed", GenSpec().map("y", {"a"}).idx("z", 5).gen())
+ .add("a", GenSpec(1.5))
+ .add("sparse", GenSpec().map("x", {"a"}))
+ .add("mixed", GenSpec().map("y", {"a"}).idx("z", 5))
.add_variants("a5", GenSpec().idx("a", 5))
.add_variants("b3", GenSpec().idx("b", 3))
.add_variants("A1a5c1", GenSpec().idx("A", 1).idx("a", 5).idx("c", 1))