Replacing call of static:: for self as it is php 5.3 specific

This commit is contained in:
José Lorenzo Rodríguez 2010-05-13 00:08:35 -04:30
parent 3e3817f113
commit c1dc753be5

View file

@ -344,7 +344,7 @@ class TestManager {
* @static
*/
protected static function _isTestGroupFile($file) {
return static::_hasExpectedExtension($file, static::$_groupExtension);
return self::_hasExpectedExtension($file, self::$_groupExtension);
}
/**