Skip to content

Commit

Permalink
fix integration tester to use new equals API
Browse files Browse the repository at this point in the history
  • Loading branch information
karlnapf committed Jan 8, 2018
1 parent 7fe0dcb commit 60531cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/meta/tester.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ int main(int argc, const char *argv[])
a->load_serializable(f);
a_ref->load_serializable(f_ref);

bool equal = a->equals(a_ref, 1E-1, true);
bool equal = a->equals(a_ref);

// print comparison output only if different as it it slow
if (!equal)
{
a->get_global_io()->set_loglevel(MSG_DEBUG);
a->equals(a_ref, 10E-8, true);
a->equals(a_ref);
}

SG_UNREF(f);
Expand Down

0 comments on commit 60531cb

Please sign in to comment.