Skip to content

Commit 369da3f

Browse files
committed
lint fix
1 parent 424b310 commit 369da3f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/ystdlib/error_handling/test/test_TraceableException.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,13 @@ auto capture_exception(Callable&& f) -> TraceableException<E> {
5151
}
5252
} // namespace
5353

54+
#include <iostream>
55+
5456
namespace ystdlib::error_handling::test {
5557
TEST_CASE("test_traceable_exception", "[error_handling][TraceableException]") {
5658
auto const ex{capture_exception<BinaryErrorCode>(Worker::execute_with_success)};
5759
REQUIRE((0 == std::strcmp(ex.where().file_name(), cCurrentFileName)));
60+
std::cout << ex.where().str().c_str() << std::endl;
5861
REQUIRE((0 == std::strcmp(ex.where().str().c_str(), cCurrentExceptionLocation)));
5962
}
6063
} // namespace ystdlib::error_handling::test

0 commit comments

Comments
 (0)