Skip to content

Commit 7d2d88f

Browse files
committed
Fix formatting
Signed-off-by: JCW <[email protected]>
1 parent 78383c7 commit 7d2d88f

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

src/tests/libxrpl/basics/log.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ TEST_CASE("Text logs")
9898
CHECK(logStream.str().find("\n") == std::string::npos);
9999
}
100100

101-
102101
TEST_CASE("Test format output")
103102
{
104103
std::string output;

src/tests/libxrpl/telemetry/json_logs.cpp

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,12 +87,8 @@ class JsonLogStreamFixture
8787

8888
TEST_CASE_FIXTURE(JsonLogStreamFixture, "TestJsonLogFields")
8989
{
90-
journal().debug() << std::boolalpha
91-
<< true
92-
<< std::noboolalpha
93-
<< " Test "
94-
<< std::boolalpha
95-
<< false;
90+
journal().debug() << std::boolalpha << true << std::noboolalpha << " Test "
91+
<< std::boolalpha << false;
9692

9793
Json::Value logValue;
9894
Json::Reader reader;

0 commit comments

Comments
 (0)