Skip to content

Commit

Permalink
Added missing square bracket to fix the level_to_string_view test. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
xvitaly committed Jul 23, 2023
1 parent d8d23a6 commit 2ee8bac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_misc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ TEST_CASE("log_levels", "[log_levels]")
REQUIRE(log_info("Hello", spdlog::level::trace) == "Hello");
}

TEST_CASE("level_to_string_view", "[convert_to_string_view")
TEST_CASE("level_to_string_view", "[convert_to_string_view]")
{
REQUIRE(spdlog::level::to_string_view(spdlog::level::trace) == "trace");
REQUIRE(spdlog::level::to_string_view(spdlog::level::debug) == "debug");
Expand Down

0 comments on commit 2ee8bac

Please sign in to comment.