Skip to content

Commit 4872372

Browse files
committed
Remove unneeded diagnostics
1 parent 7c23542 commit 4872372

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

test/github_issue_272.cpp

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,7 @@ void endpos_using_istream(const std::string& str, const int expected_endpos)
1919
is.clear();
2020
const auto endpos = is.tellg();
2121

22-
if (!BOOST_TEST_EQ(endpos, expected_endpos))
23-
{
24-
// LCOV_EXCL_START
25-
std::cerr << "String: " << str << '\n'
26-
<< "Expected: " << expected_endpos << '\n'
27-
<< "Got: " << is.tellg() << std::endl;
28-
// LCOV_EXCL_STOP
29-
}
22+
BOOST_TEST_EQ(endpos, expected_endpos);
3023
}
3124

3225
template <typename T>

0 commit comments

Comments
 (0)