From 17ad0ca1ad23b336b0fa5952f42dfad95397fc47 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 1 Aug 2016 15:44:14 -0400 Subject: Rename main graph and control/notify ports --- wscript | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'wscript') diff --git a/wscript b/wscript index 72d08735..d39f9e7b 100644 --- a/wscript +++ b/wscript @@ -304,7 +304,7 @@ def test(ctx): autowaf.begin_tests(ctx, APPNAME) empty = ctx.path.find_node('tests/empty.ingen') - empty_path = os.path.join(empty.abspath(), 'graph.ttl') + empty_path = os.path.join(empty.abspath(), 'main.ttl') for i in ctx.path.ant_glob('tests/*.ttl'): # Run test autowaf.run_test(ctx, APPNAME, @@ -313,12 +313,12 @@ def test(ctx): # Check undo output for changes base = os.path.basename(i.abspath().replace('.ttl', '')) - undone_path = base + '.undo.ingen/graph.ttl' + undone_path = base + '.undo.ingen/main.ttl' test_file_equals(empty_path, os.path.abspath(undone_path)) # Check redo output for changes - out_path = base + '.out.ingen/graph.ttl' - redone_path = base + '.redo.ingen/graph.ttl' + out_path = base + '.out.ingen/main.ttl' + redone_path = base + '.redo.ingen/main.ttl' test_file_equals(out_path, os.path.abspath(redone_path)) autowaf.end_tests(ctx, APPNAME) -- cgit v1.2.1