From: Michael Wallner Date: Mon, 21 Oct 2013 10:18:58 +0000 (+0200) Subject: remove TRAVIS check in test source X-Git-Tag: php-5.5.6RC1~5^2~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fb610b4e808c770800434d1a42d606f274927a94;p=php remove TRAVIS check in test source --- diff --git a/ext/standard/tests/file/disk_free_space_basic.phpt b/ext/standard/tests/file/disk_free_space_basic.phpt index e0bc367bf4..200e92ab43 100644 --- a/ext/standard/tests/file/disk_free_space_basic.phpt +++ b/ext/standard/tests/file/disk_free_space_basic.phpt @@ -37,7 +37,7 @@ echo "\n Free Space after writing to a file\n"; $space2 = disk_free_space($file_path.$dir); var_dump( $space2 ); -if(getenv('TRAVIS') === 'true' || $space1 > $space2 ) +if($space1 > $space2 ) echo "\n Free Space Value Is Correct\n"; else echo "\n Free Space Value Is Incorrect\n";