zoe Wed, 09 May 2012 16:54:16 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=325630
Log: clean up temporary file Changed paths: U php/phpruntests/trunk/tests/testcase/sections/configurationsections/rtPostSectionTest.php Modified: php/phpruntests/trunk/tests/testcase/sections/configurationsections/rtPostSectionTest.php =================================================================== --- php/phpruntests/trunk/tests/testcase/sections/configurationsections/rtPostSectionTest.php 2012-05-09 16:29:30 UTC (rev 325629) +++ php/phpruntests/trunk/tests/testcase/sections/configurationsections/rtPostSectionTest.php 2012-05-09 16:54:16 UTC (rev 325630) @@ -13,6 +13,9 @@ $fileName = $postSection->getPostFileName(); $string = file_get_contents($fileName); + //clean up + unlink($fileName); + $this->assertEquals('hello=World&goodbye=MrChips', $string); } }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php