From c8449269bdcb08c3f1029c7c368703d92f6b65a1 Mon Sep 17 00:00:00 2001 From: chrchr-github <78114321+chrchr-github@users.noreply.github.com> Date: Tue, 12 Sep 2023 16:18:38 +0200 Subject: [PATCH] Update test-other.py --- test/cli/test-other.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cli/test-other.py b/test/cli/test-other.py index 9829a2f3689..a8388efc2bf 100644 --- a/test/cli/test-other.py +++ b/test/cli/test-other.py @@ -174,7 +174,7 @@ def test_slow_long_line(tmpdir): # simplecpp #314 filename = os.path.join(tmpdir, 'hang.c') with open(filename, 'wt') as f: - f.write("#define A() static const int a[] = {\n\\") + f.write("#define A() static const int a[] = {\\\n") for i in range(20000): f.write(" -123, 456, -789,\\\n") f.write("};\n")