summaryrefslogtreecommitdiff
path: root/test/rat_tests-lexer.adb
diff options
context:
space:
mode:
Diffstat (limited to 'test/rat_tests-lexer.adb')
-rw-r--r--test/rat_tests-lexer.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/rat_tests-lexer.adb b/test/rat_tests-lexer.adb
index 702de18..484c86b 100644
--- a/test/rat_tests-lexer.adb
+++ b/test/rat_tests-lexer.adb
@@ -16,7 +16,7 @@ package body Rat_Tests.Lexer is
package String_Tokens is new Packrat.Tokens (My_Labels, Character, String);
- package Slexy is new Packrat.Lexer (My_Labels, Character, String, String_Tokens);
+ package Slexy is new Packrat.Lexer (My_Labels, Character, String, "<", String_Tokens);
package Slebug is new Slexy.Debug;
@@ -649,7 +649,7 @@ package body Rat_Tests.Lexer is
type Word_Enum is (Blank, Word, Whitespace);
package Word_Tokens is new Packrat.Tokens (Word_Enum, Character, String);
- package Swordy is new Packrat.Lexer (Word_Enum, Character, String, Word_Tokens);
+ package Swordy is new Packrat.Lexer (Word_Enum, Character, String, "<", Word_Tokens);
package Swolbug is new Swordy.Debug;
use type Word_Tokens.Token;