Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorgabime <gmelman1@gmail.com>2016-07-09 01:00:16 +0300
committergabime <gmelman1@gmail.com>2016-07-09 01:00:16 +0300
commitfebdf7324f45db01663f8e2143024932a0a1cb26 (patch)
tree5eb432b8b5d0135138c719ce35a97004bfa7fdff /tests
parent258531481dd275d54ea48dfd54d43ffa0fc435fe (diff)
astyle
Diffstat (limited to 'tests')
-rw-r--r--tests/format.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/format.cpp b/tests/format.cpp
index 26bff6f2..19d6bc52 100644
--- a/tests/format.cpp
+++ b/tests/format.cpp
@@ -43,7 +43,7 @@ TEST_CASE("basic_logging ", "[basic_logging]")
TEST_CASE("log_levels", "[log_levels]")
{
REQUIRE(log_info("Hello", spdlog::level::err) == "");
- REQUIRE(log_info("Hello", spdlog::level::critical) == "");
+ REQUIRE(log_info("Hello", spdlog::level::critical) == "");
REQUIRE(log_info("Hello", spdlog::level::info) == "Hello");
REQUIRE(log_info("Hello", spdlog::level::debug) == "Hello");
REQUIRE(log_info("Hello", spdlog::level::trace) == "Hello");