Skip to content

Commit f34fc2d

Browse files
committed
Added missing comma (Issue #1805)
1 parent d51a225 commit f34fc2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/math/mix/fun/Phi_test.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ TEST(mathMixMatFun, Phi_varmat) {
1717
return Phi(x1);
1818
};
1919
std::vector<double> com_args = common_nonzero_args();
20-
std::vector<double> args{-27.5, -0.5, 0.0, 1.1 27.5};
20+
std::vector<double> args{-27.5, -0.5, 0.0, 1.1, 27.5};
2121
auto all_args = vec_concat(com_args, args);
2222
Eigen::VectorXd A(all_args.size());
2323
for (int i = 0; i < all_args.size(); ++i) {

0 commit comments

Comments
 (0)