From 8507af6f4a8a1dc544112d53bf08007f4fc490e7 Mon Sep 17 00:00:00 2001 From: nikic Date: Thu, 27 Nov 2014 21:01:56 +0100 Subject: [PATCH] Add missing require in tests Test files aren't autoloaded, so this was order-dependent. --- test/PhpParser/Lexer/EmulativeTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/PhpParser/Lexer/EmulativeTest.php b/test/PhpParser/Lexer/EmulativeTest.php index 4717345..75e0ffc 100644 --- a/test/PhpParser/Lexer/EmulativeTest.php +++ b/test/PhpParser/Lexer/EmulativeTest.php @@ -5,6 +5,8 @@ namespace PhpParser\Lexer; use PhpParser\LexerTest; use PhpParser\Parser; +require_once __DIR__ . '/../LexerTest.php'; + class EmulativeTest extends LexerTest { protected function getLexer(array $options = array()) {