From 73d533ff5ca4ebddd5eac40d413e20a984f1c228 Mon Sep 17 00:00:00 2001 From: Jozef Grajciar Date: Tue, 1 Jan 2019 14:12:36 +0100 Subject: [PATCH] Examples: add semicolon after INFO --- examples/210-Evt-EventListeners.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/210-Evt-EventListeners.cpp b/examples/210-Evt-EventListeners.cpp index 7df93d71..fde51c7e 100644 --- a/examples/210-Evt-EventListeners.cpp +++ b/examples/210-Evt-EventListeners.cpp @@ -387,16 +387,16 @@ TEST_CASE( "2: Testcase with sections", "[tag-A][tag-B]" ) { REQUIRE( i == 42 ); SECTION("Section 1") { - INFO("Section 1") + INFO("Section 1"); i = 7; SECTION("Section 1.1") { - INFO("Section 1.1") + INFO("Section 1.1"); REQUIRE( i == 42 ); } } SECTION("Section 2") { - INFO("Section 2") + INFO("Section 2"); REQUIRE( i == 42 ); } WARN("At end of test case");