summaryrefslogtreecommitdiffstats
path: root/tests/ingen_test.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-01-02 18:17:04 +0100
committerDavid Robillard <d@drobilla.net>2021-01-02 18:17:04 +0100
commitf0e33dd09a390ca946e95a6f55fea397dca0ca1f (patch)
tree8d8befb3c7196ae119efc95ed6cdf2ba9cc00c32 /tests/ingen_test.cpp
parentd2143bb3298d94ebef62ed50d377e89533a02b42 (diff)
downloadingen-f0e33dd09a390ca946e95a6f55fea397dca0ca1f.tar.gz
ingen-f0e33dd09a390ca946e95a6f55fea397dca0ca1f.tar.bz2
ingen-f0e33dd09a390ca946e95a6f55fea397dca0ca1f.zip
Update for latest raul
Diffstat (limited to 'tests/ingen_test.cpp')
-rw-r--r--tests/ingen_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/ingen_test.cpp b/tests/ingen_test.cpp
index eaa6a0ab..87e02e9f 100644
--- a/tests/ingen_test.cpp
+++ b/tests/ingen_test.cpp
@@ -194,7 +194,7 @@ run(int argc, char** argv)
delete cmds;
// Save resulting graph
- auto r = world->store()->find(Raul::Path("/"));
+ auto r = world->store()->find(raul::Path("/"));
const std::string base = run_path.stem();
const std::string out_name = base.substr(0, base.find('.')) + ".out.ingen";
const FilePath out_path = filesystem::current_path() / out_name;
@@ -207,7 +207,7 @@ run(int argc, char** argv)
}
// Save completely undone graph
- r = world->store()->find(Raul::Path("/"));
+ r = world->store()->find(raul::Path("/"));
const std::string undo_name = base.substr(0, base.find('.')) + ".undo.ingen";
const FilePath undo_path = filesystem::current_path() / undo_name;
world->serialiser()->write_bundle(r->second, URI(undo_path));
@@ -219,7 +219,7 @@ run(int argc, char** argv)
}
// Save completely redone graph
- r = world->store()->find(Raul::Path("/"));
+ r = world->store()->find(raul::Path("/"));
const std::string redo_name = base.substr(0, base.find('.')) + ".redo.ingen";
const FilePath redo_path = filesystem::current_path() / redo_name;
world->serialiser()->write_bundle(r->second, URI(redo_path));