From bb25892c4277a4705e8538d83b18f5c73b171039 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 15 Dec 2022 23:49:51 +0100 Subject: [PATCH] Add some line spacing in the editor. --- test/verify_test.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/verify_test.cc b/test/verify_test.cc index 0aa21b4c..1bc7649f 100644 --- a/test/verify_test.cc +++ b/test/verify_test.cc @@ -237,9 +237,9 @@ public: _content = ""; bool replaced = false; for (auto i: lines) { - _content += i; + _content += i + "\n"; if (!replaced && i.find(after) != string::npos) { - _content += line; + _content += line + "\n"; replaced = true; } } -- 2.30.2