Skip to content

Commit ed6b54f

Browse files
committed
[Jenkins] auto-formatting by clang-format version 10.0.0-4ubuntu1
1 parent 6c476f6 commit ed6b54f

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

test/unit/math/prim/fun/to_ref_test.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ TEST(MathMatrix, to_ref_matrix_exprs_tuple) {
2525
TEST(MathMatrix, to_ref_matrix_views_tuple) {
2626
Eigen::MatrixXd a = Eigen::MatrixXd::Random(3, 3);
2727
auto x = std::make_tuple(a.block(0, 0, 1, 1),
28-
a(Eigen::all, std::vector{2, 1, 1}),
29-
a.array());
28+
a(Eigen::all, std::vector{2, 1, 1}), a.array());
3029
auto x_ref = stan::math::to_ref(x);
3130
using x_ref_t = decltype(x_ref);
3231
using stan::test::is_same_tuple_element_v;
@@ -46,8 +45,7 @@ TEST(MathMatrix, to_ref_matrix_views_exprs_tuple) {
4645
Eigen::MatrixXd a = Eigen::MatrixXd::Random(3, 3);
4746
auto x = std::make_tuple(
4847
a.block(0, 0, 1, 1),
49-
std::make_tuple(a.block(0, 0, 1, 1),
50-
a(Eigen::all, std::vector{2, 1, 1}),
48+
std::make_tuple(a.block(0, 0, 1, 1), a(Eigen::all, std::vector{2, 1, 1}),
5149
a.array()),
5250
std::make_tuple(a * a, a, a.array() * 3),
5351
a(Eigen::all, std::vector{2, 1, 1}), a.array() * a.array());

0 commit comments

Comments
 (0)