Skip to content

Commit

Permalink
MINOR: Comment out debugging echo in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Hamish Friedlander committed Apr 13, 2012
1 parent 4e5b3b5 commit 5e6bb4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ParserTestBase.php
Expand Up @@ -40,7 +40,7 @@ class ParserTestBase extends PHPUnit_Framework_TestCase {
function buildParser($parser) {
$class = 'Parser'.sha1($parser);

echo ParserCompiler::compile("class $class extends Parser {\n $parser\n}") . "\n\n\n";
// echo ParserCompiler::compile("class $class extends Parser {\n $parser\n}") . "\n\n\n";
eval(ParserCompiler::compile("class $class extends Parser {\n $parser\n}"));
return new ParserTestWrapper($this, $class);
}
Expand Down

0 comments on commit 5e6bb4e

Please sign in to comment.