From 994d2667ab532f9447170e731e5d93559ebfaaaa Mon Sep 17 00:00:00 2001 From: Sebastian Mendel Date: Wed, 17 Oct 2007 14:08:40 +0000 Subject: [PATCH] PHP 5.2 required --- test/Environment_test.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/Environment_test.php b/test/Environment_test.php index 4f0fe3bfa..7b5c41a08 100644 --- a/test/Environment_test.php +++ b/test/Environment_test.php @@ -16,8 +16,8 @@ class Environment_test extends PHPUnit_Framework_TestCase { public function testPhpVersion() { - $this->assertTrue(version_compare('4.1', phpversion(), '<='), - 'phpMyAdmin requires PHP 4.1 or above'); + $this->assertTrue(version_compare('5.2', phpversion(), '<='), + 'phpMyAdmin requires PHP 5.2 or above'); } public function testMySQL() @@ -30,4 +30,4 @@ class Environment_test extends PHPUnit_Framework_TestCase $this->markTestIncomplete(); } } -?> \ No newline at end of file +?>