summaryrefslogtreecommitdiffstats
path: root/eval/src/tests/instruction/join_with_number/join_with_number_function_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'eval/src/tests/instruction/join_with_number/join_with_number_function_test.cpp')
-rw-r--r--eval/src/tests/instruction/join_with_number/join_with_number_function_test.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/eval/src/tests/instruction/join_with_number/join_with_number_function_test.cpp b/eval/src/tests/instruction/join_with_number/join_with_number_function_test.cpp
index 2d943aa569e..e6a256a493b 100644
--- a/eval/src/tests/instruction/join_with_number/join_with_number_function_test.cpp
+++ b/eval/src/tests/instruction/join_with_number/join_with_number_function_test.cpp
@@ -33,12 +33,10 @@ std::ostream &operator<<(std::ostream &os, Primary primary)
const ValueBuilderFactory &prod_factory = FastValueBuilderFactory::get();
-TensorSpec spec(double v) { return TensorSpec("double").add({}, v); }
-
EvalFixture::ParamRepo make_params() {
auto repo = EvalFixture::ParamRepo()
- .add("a", spec(1.5))
- .add("number", spec(2.5))
+ .add("a", GenSpec().seq_bias(1.5).gen())
+ .add("number", GenSpec().seq_bias(2.5).gen())
.add("dense", GenSpec().idx("y", 5).gen())
.add_variants("x3y5", GenSpec().idx("x", 3).idx("y", 5))
.add_variants("mixed", GenSpec().map("x", {"a"}).idx("y", 5).map("z", {"d","e"}))