From: ptarjan Date: Wed, 3 Apr 2013 02:24:11 +0000 (-0700) Subject: Fix #64572: Clean up after the test X-Git-Tag: php-5.4.15RC1~33 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=99ad08f9a5e696654676e9db8872e4198b738936;p=php Fix #64572: Clean up after the test Lets not leave stuff lying around. --- diff --git a/ext/standard/tests/file/bug44805.phpt b/ext/standard/tests/file/bug44805.phpt index 85f1255a6d..8e13c38629 100644 --- a/ext/standard/tests/file/bug44805.phpt +++ b/ext/standard/tests/file/bug44805.phpt @@ -22,7 +22,7 @@ readfile($file2); if (file_exists($file1)) { unlink($file1); } -if (file_exists($file1)) { +if (file_exists($file2)) { unlink($file2); } ?>