From 3fb1507adb22d68aff4bbb7d29b871b5ac9c7ccc Mon Sep 17 00:00:00 2001 From: stevebronder Date: Wed, 9 Jun 2021 21:32:02 -0400 Subject: [PATCH] fix include order error --- test/unit/math/test_ad_matvar.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/math/test_ad_matvar.hpp b/test/unit/math/test_ad_matvar.hpp index 6b6304db0d4..1cde23558d9 100644 --- a/test/unit/math/test_ad_matvar.hpp +++ b/test/unit/math/test_ad_matvar.hpp @@ -999,7 +999,7 @@ template * = nullptr, void expect_ad_vectorized_matvar(const ad_tolerances& tols, const F& f, const T1& x, const T2& y) { auto g = [&f](const auto& x, const auto& y) { return f(y, x); }; - expect_ad_vectorized_matvar(g, y, x); + expect_ad_vectorized_matvar(tols, g, y, x); } /**