fixed missing eol in enforce logging test

This commit is contained in:
WolverinDEV 2019-11-23 18:28:07 +01:00
parent ea49998a6e
commit 2e29c2a284
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ TEST_CASE("enforce level", "[enforce logging]")
REQUIRE(oss.str().empty());
spdlog::default_logger()->log(spdlog::source_loc{}, spdlog::level::forceable{spdlog::level::info, true}, "should be logged");
REQUIRE(oss.str() == "*** should be logged");
REQUIRE(oss.str() == "*** should be logged" + std::string(spdlog::details::os::default_eol));
spdlog::drop_all();
spdlog::set_pattern("%v");