From fd87cc268c7faaf1d37ac2e3402fca47b5d1f40a Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Sun, 10 Jun 2012 21:37:34 +0000 Subject: [PATCH] Apparent typo in the test cases meant one combination was not being tested. --- src/mlpack/tests/lars_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mlpack/tests/lars_test.cpp b/src/mlpack/tests/lars_test.cpp index 4ffa722fd6..cd9b81a715 100644 --- a/src/mlpack/tests/lars_test.cpp +++ b/src/mlpack/tests/lars_test.cpp @@ -85,7 +85,7 @@ void LassoTest(size_t nPoints, size_t nDims, bool elasticNet, bool useCholesky) BOOST_AUTO_TEST_CASE(LARSTestLassoCholesky) { - LassoTest(100, 10, true, false); + LassoTest(100, 10, false, true); }