summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-08-18 01:41:57 -0400
committerDavid Robillard <d@drobilla.net>2022-08-18 01:41:57 -0400
commitf8eee81f6f94d018ab7c1133bf2b78926316edf8 (patch)
tree6b07e0da7df5e6df1bc87bff7b5e96d3a067452d /tests
parent4564d719745848386a0662a44a47a8400c799560 (diff)
downloadingen-f8eee81f6f94d018ab7c1133bf2b78926316edf8.tar.gz
ingen-f8eee81f6f94d018ab7c1133bf2b78926316edf8.tar.bz2
ingen-f8eee81f6f94d018ab7c1133bf2b78926316edf8.zip
Fix overly long line comments
Diffstat (limited to 'tests')
-rw-r--r--tests/ingen_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ingen_test.cpp b/tests/ingen_test.cpp
index f0148b12..496e8828 100644
--- a/tests/ingen_test.cpp
+++ b/tests/ingen_test.cpp
@@ -203,7 +203,7 @@ run(int argc, char** argv)
const FilePath out_path = filesystem::current_path() / out_name;
world->serialiser()->write_bundle(r->second, URI(out_path));
- // Undo every event (should result in a graph identical to the original)
+ // Undo every event (makes the graph identical to the original)
for (int i = 0; i < n_events; ++i) {
world->interface()->undo();
world->engine()->flush_events(std::chrono::milliseconds(20));
@@ -215,7 +215,7 @@ run(int argc, char** argv)
const FilePath undo_path = filesystem::current_path() / undo_name;
world->serialiser()->write_bundle(r->second, URI(undo_path));
- // Redo every event (should result in a graph identical to the pre-undo output)
+ // Redo every event (makes the graph identical to the pre-undo output)
for (int i = 0; i < n_events; ++i) {
world->interface()->redo();
world->engine()->flush_events(std::chrono::milliseconds(20));