From 00bff02e13adb39bb427a05b42edc7fdc8d5c8c7 Mon Sep 17 00:00:00 2001 From: orbitcowboy Date: Thu, 5 Oct 2017 09:02:55 +0200 Subject: [PATCH] Formatted the code. There are no functional changes [ci skip]. --- test/testio.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/testio.cpp b/test/testio.cpp index 915bdb3de..a3dbae081 100644 --- a/test/testio.cpp +++ b/test/testio.cpp @@ -3006,11 +3006,11 @@ private: } void testReturnValueTypeStdLib() { - check("void f() {\n" - " const char *s = \"0\";\n" - " printf(\"%ld%lld\", atol(s), atoll(s));\n" - "}"); - ASSERT_EQUALS("", errout.str()); + check("void f() {\n" + " const char *s = \"0\";\n" + " printf(\"%ld%lld\", atol(s), atoll(s));\n" + "}"); + ASSERT_EQUALS("", errout.str()); } };