diff --git a/test/testcondition.cpp b/test/testcondition.cpp index d46a016072f..48ce3a5b287 100644 --- a/test/testcondition.cpp +++ b/test/testcondition.cpp @@ -4990,19 +4990,19 @@ class TestCondition : public TestFixture { ASSERT_EQUALS("", errout_str()); check("struct S {\n" // #12727 - " bool f() const {\n" - " return g() > 0;\n" - " }\n" - " std::size_t g() const {\n" - " return 5 - h();\n" - " }\n" - " std::size_t h() const {\n" - " if (x > 7)\n" - " return 5;\n" - " return (5 + x) % 5;\n" - " }\n" - " std::size_t x;\n" - "};\n"); + " bool f() const {\n" + " return g() > 0;\n" + " }\n" + " std::size_t g() const {\n" + " return 5 - h();\n" + " }\n" + " std::size_t h() const {\n" + " if (x > 7)\n" + " return 5;\n" + " return (5 + x) % 5;\n" + " }\n" + " std::size_t x;\n" + "};\n"); ASSERT_EQUALS("", errout_str()); }