tweak unit test

This commit is contained in:
Terence Parr 2012-10-08 11:56:46 -07:00
parent 7bc16f40ea
commit 55ad7bdb2c
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ public class TestAttributeChecks extends BaseTest {
@Test public void testTokenRef() throws RecognitionException {
String grammar =
"parser grammar S;\n" +
"tokens{ID;}\n" +
"tokens{ID}\n" +
"a : x=ID {Token t = $x; t = $ID;} ;\n";
String expected =
"";