diff --git a/src/mlpack/tests/rectangle_tree_test.cpp b/src/mlpack/tests/rectangle_tree_test.cpp index 15f859eaa3..42092b6a9d 100644 --- a/src/mlpack/tests/rectangle_tree_test.cpp +++ b/src/mlpack/tests/rectangle_tree_test.cpp @@ -21,10 +21,6 @@ using namespace mlpack::metric; BOOST_AUTO_TEST_SUITE(RectangleTreeTest); -// Be careful! When writing new tests, always get the boolean value and store -// it in a temporary, because the Boost unit test macros do weird things and -// will cause bizarre problems. - // Test the traits on RectangleTrees. BOOST_AUTO_TEST_CASE(RectangleTreeTraitsTest) @@ -254,7 +250,7 @@ BOOST_AUTO_TEST_CASE(TreeLocalDatasetInSync) { arma::mat dataset; dataset.randu(8, 1000); // 1000 points in 8 dimensions. - + typedef RTree, arma::mat> TreeType; diff --git a/src/mlpack/tests/tree_traits_test.cpp b/src/mlpack/tests/tree_traits_test.cpp index 0de745fdcf..e7b4925924 100644 --- a/src/mlpack/tests/tree_traits_test.cpp +++ b/src/mlpack/tests/tree_traits_test.cpp @@ -23,9 +23,9 @@ using namespace mlpack::metric; BOOST_AUTO_TEST_SUITE(TreeTraitsTest); -// Be careful! When writing new tests, always get the boolean value and store -// it in a temporary, because the Boost unit test macros do weird things and -// will cause bizarre problems. +// Be careful! When writing new tests, always get the boolean value of each +// trait and store it in a temporary, because the Boost unit test macros do +// weird things and will cause bizarre problems. // Test the defaults. BOOST_AUTO_TEST_CASE(DefaultsTraitsTest)