1 diff --git a/test/tests-tensor_types.cpp b/test/tests-tensor_types.cpp
2 index 39d1b30a..c507da81 100644
3 --- a/test/tests-tensor_types.cpp
4 +++ b/test/tests-tensor_types.cpp
5 @@ -45,7 +45,7 @@ TYPED_TEST_P(VectorTensorTest, types) {
6 ASSERT_EQ(t, a.getComponentType());
7 ASSERT_EQ(1, a.getOrder());
8 ASSERT_EQ(5, a.getDimension(0));
9 - map<vector<int>,TypeParam> vals = {{{0}, 1.0}, {{2}, 2.0}};
10 + map<vector<int>,TypeParam> vals = {{{0}, (TypeParam)1.0}, {{2}, (TypeParam)2.0}};
11 for (auto& val : vals) {
12 a.insert(val.first, val.second);