Skip to content

Commit f4bdfb6

Browse files
committed
Fix an uninitialized variable due to a typo
1 parent d8f56d1 commit f4bdfb6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/unit/math/prim/constraint/lb_transform_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ TEST(prob_transform, lb_constrain_std_vector) {
9090
Eigen::VectorXd lb(2);
9191
lb << 2.0, stan::math::NEGATIVE_INFTY;
9292
Eigen::VectorXd lb2(2);
93-
lb << stan::math::NEGATIVE_INFTY, 1.0;
93+
lb2 << stan::math::NEGATIVE_INFTY, 1.0;
9494
double lbd = 2.0;
9595

9696
Eigen::VectorXd lb_bad(3);

0 commit comments

Comments
 (0)