Removed extraneous tolerance parameter

release/4.3a0
Alex Cunningham 2011-09-28 20:33:27 +00:00
parent d07486bf09
commit 939787891a
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ bool assert_container_equal(const V& expected, const V& actual, double tol = 1e-
* General function for comparing containers of objects with operator==
*/
template<class V>
bool assert_container_equality(const V& expected, const V& actual, double tol = 1e-9) {
bool assert_container_equality(const V& expected, const V& actual) {
bool match = true;
if (expected.size() != actual.size())
match = false;