diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-12-15 23:49:51 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-12-15 23:49:51 +0100 |
| commit | bb25892c4277a4705e8538d83b18f5c73b171039 (patch) | |
| tree | c9177351785f199efec07de52880f6b34c12ebc0 | |
| parent | 99690b20b7a393d8c0d5b70a75ab176eabcfe11e (diff) | |
Add some line spacing in the editor.
| -rw-r--r-- | test/verify_test.cc | 4 |
1 files 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; } } |
