From f8eee81f6f94d018ab7c1133bf2b78926316edf8 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 18 Aug 2022 01:41:57 -0400 Subject: Fix overly long line comments --- tests/ingen_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') 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)); -- cgit v1.2.1