Fix test cases affected by recent changes

See #1545
This commit is contained in:
Sam Harwell 2016-12-26 17:03:51 -06:00
parent 8b21cc3dfb
commit 1d066e0a6b
1 changed files with 3 additions and 3 deletions

View File

@ -135,7 +135,7 @@ public class ParserErrorsDescriptors {
public static class InvalidEmptyInput extends BaseParserTestDescriptor {
public String input = "";
public String output = null;
public String errors = "line 1:0 missing ID at '<EOF>'\n";
public String errors = "line 1:0 mismatched input '<EOF>' expecting ID\n";
public String startRule = "start";
public String grammarName = "T";
@ -414,7 +414,7 @@ public class ParserErrorsDescriptors {
/**
grammar T;
a : 'a' 'b'* ;
a : 'a' 'b'* EOF ;
*/
@CommentHasStringValue
public String grammar;
@ -436,7 +436,7 @@ public class ParserErrorsDescriptors {
/**
grammar T;
a : 'a' ('b'|'z'{<Pass()>})*;
a : 'a' ('b'|'z'{<Pass()>})* EOF ;
*/
@CommentHasStringValue
public String grammar;