Skip to content

Commit

Permalink
Improve output of tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Aug 30, 2023
1 parent f8fc0d0 commit d6e9c8b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/schema_evolution/read_new_data.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@

#define ASSERT_EQUAL(actual, expected, msg) \
if ((expected) != (actual)) { \
std::cerr << __PRETTY_FUNCTION__ << ": " << msg << " (expected: " << expected << ", actual: " << actual << ")"; \
std::cerr << __PRETTY_FUNCTION__ << ": " << msg << " (expected: " << expected << ", actual: " << actual << ")" \
<< std::endl; \
return 1; \
}

Expand Down

0 comments on commit d6e9c8b

Please sign in to comment.