From a3ecf768ca2ecf09e73fbb3cd7b02757b6339336 Mon Sep 17 00:00:00 2001 From: David Majda Date: Fri, 19 Mar 2010 16:36:43 +0100 Subject: [PATCH] Fixed missing referenced rules test. --- test/compiler-test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/compiler-test.js b/test/compiler-test.js index 3f92041..49c0404 100644 --- a/test/compiler-test.js +++ b/test/compiler-test.js @@ -118,8 +118,8 @@ test("buildParser reports missing referenced rules", function() { 'start: missing', 'start: missing "a" "b"', 'start: "a" "b" missing', - 'start: missing | "a" | "b"', - 'start: "a" | "b" | missing', + 'start: missing / "a" / "b"', + 'start: "a" / "b" / missing', 'start: missing*', 'start: !missing', 'start: &missing',