From a8a5805895f4cdc8f20751ebc1153fb085bac087 Mon Sep 17 00:00:00 2001 From: Bob Nystrom Date: Sun, 22 Feb 2015 10:42:21 -0800 Subject: [PATCH] Fix test script. --- script/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/test.py b/script/test.py index 557f78c2..e4acfeb6 100755 --- a/script/test.py +++ b/script/test.py @@ -12,7 +12,7 @@ import sys # Runs the tests. WREN_DIR = dirname(dirname(realpath(__file__))) TEST_DIR = join(WREN_DIR, 'test') -WREN_APP = join(WREN_DIR, 'wrend') +WREN_APP = join(WREN_DIR, 'bin', 'wrend') EXPECT_PATTERN = re.compile(r'// expect: (.*)') EXPECT_ERROR_PATTERN = re.compile(r'// expect error')