Removed extraneous tolerance parameter
parent
d07486bf09
commit
939787891a
|
|
@ -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==
|
* General function for comparing containers of objects with operator==
|
||||||
*/
|
*/
|
||||||
template<class V>
|
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;
|
bool match = true;
|
||||||
if (expected.size() != actual.size())
|
if (expected.size() != actual.size())
|
||||||
match = false;
|
match = false;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue