From 6cf4be924d182c7c34db94085c45ea5b49837c3f Mon Sep 17 00:00:00 2001 From: chrchr-github Date: Fri, 10 May 2024 21:59:28 +0200 Subject: [PATCH] Format --- test/testleakautovar.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/testleakautovar.cpp b/test/testleakautovar.cpp index 1da92689f3e..1075774f51f 100644 --- a/test/testleakautovar.cpp +++ b/test/testleakautovar.cpp @@ -625,13 +625,13 @@ class TestLeakAutoVar : public TestFixture { check("void f(int*& x) {\n" // #8235 " int* p = (int*)malloc(10);\n" " x = p ? p : nullptr;\n" - "}", true); + "}", true); ASSERT_EQUALS("", errout_str()); check("void f(int*& x) {\n" " int* p = (int*)malloc(10);\n" " x = p != nullptr ? p : nullptr;\n" - "}", true); + "}", true); ASSERT_EQUALS("", errout_str()); }