MINOR: Remove checks for PHP <5.3.2, as it's no longer supported

This commit is contained in:
Andrew O'Neil 2012-04-18 10:36:55 +12:00
parent dcdb0b4731
commit d1c500a5f9

View File

@ -831,10 +831,6 @@ class SiteTreeTest extends SapphireTest {
}
function testClassDropdown() {
if(version_compare(PHP_VERSION, '5.3.2', '<')){
// @link http://www.php.net/manual/en/reflectionmethod.setaccessible.php
$this->markTestSkipped('Need PHP 5.3.2 to run this test.');
}
$sitetree = new SiteTree();
$method = new ReflectionMethod($sitetree, 'getClassDropdown');
$method->setAccessible(true);