diff --git a/tests/Mantis/ConfigParserTest.php b/tests/Mantis/ConfigParserTest.php index ef2f138349..d35c2a16d9 100644 --- a/tests/Mantis/ConfigParserTest.php +++ b/tests/Mantis/ConfigParserTest.php @@ -86,7 +86,7 @@ public function testArrays() { # Export the converted array, and parse again. # The result should match both the model and the previously parsed array - $t_parser = new ConfigParser( var_export( $t_reference_result , true ) ); + $t_parser = new ConfigParser( var_export( $t_parsed_1 , true ) ); $t_parsed_2 = $t_parser->parse(); $this->assertEquals( $t_parsed_2, $t_reference_result, $this->errorMessage( $t_string ) ); $this->assertEquals( $t_parsed_2, $t_parsed_1, $this->errorMessage( $t_string ) );