sequence is definitely broken, results aren't landing in output array

This commit is contained in:
Meredith L. Patterson 2013-12-01 21:11:15 -08:00
parent fc71e12bea
commit 1ce63c26ec
2 changed files with 40 additions and 1 deletions

View file

@ -20,7 +20,7 @@ class EndPTest extends PHPUnit_Framework_TestCase
{
$result = h_parse($this->parser, "aa");
var_dump($result);
$this->assertEquals(array(), $result);
$this->assertEquals(NULL, $result);
}
}
?>