diff options
Diffstat (limited to 'tests/Lexer/LexerTest.php')
-rw-r--r-- | tests/Lexer/LexerTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Lexer/LexerTest.php b/tests/Lexer/LexerTest.php index 0bcd3f7..bcbcfc4 100644 --- a/tests/Lexer/LexerTest.php +++ b/tests/Lexer/LexerTest.php @@ -18,9 +18,9 @@ class LexerTest extends TestCase { $lexer = new Lexer(''); - $lexer->error(__('error #1'), 'foo', 1, 2); + $lexer->error('error #1', 'foo', 1, 2); $lexer->error( - sprintf(__('%2$s #%1$d'), 2, 'error'), + sprintf('%2$s #%1$d', 2, 'error'), 'bar', 3, 4 @@ -45,7 +45,7 @@ class LexerTest extends TestCase $lexer = new Lexer(''); $lexer->strict = true; - $lexer->error(__('strict error'), 'foo', 1, 4); + $lexer->error('strict error', 'foo', 1, 4); } /** |