diff --git a/unsupported/test/cxx11_tensor_concatenation.cpp b/unsupported/test/cxx11_tensor_concatenation.cpp index 2e1abdfb1..e223d9ffd 100644 --- a/unsupported/test/cxx11_tensor_concatenation.cpp +++ b/unsupported/test/cxx11_tensor_concatenation.cpp @@ -56,7 +56,7 @@ static void test_static_dimension_failure() // either the code should change to // Tensor::Dimensions{{2, 3}} // or Tensor::Dimensions{Tensor::Dimensions{{2, 3}}} - .concatenate(right.reshape(Tensor::Dimensions{{{2, 3}}}), 0); + .concatenate(right.reshape(Tensor::Dimensions(2, 3)), 0); } template