PHP 5.2 required

This commit is contained in:
Sebastian Mendel
2007-10-17 14:08:40 +00:00
parent bccd6fea65
commit 994d2667ab

View File

@@ -16,8 +16,8 @@ class Environment_test extends PHPUnit_Framework_TestCase
{ {
public function testPhpVersion() public function testPhpVersion()
{ {
$this->assertTrue(version_compare('4.1', phpversion(), '<='), $this->assertTrue(version_compare('5.2', phpversion(), '<='),
'phpMyAdmin requires PHP 4.1 or above'); 'phpMyAdmin requires PHP 5.2 or above');
} }
public function testMySQL() public function testMySQL()
@@ -30,4 +30,4 @@ class Environment_test extends PHPUnit_Framework_TestCase
$this->markTestIncomplete(); $this->markTestIncomplete();
} }
} }
?> ?>