From 4e0324de089d8a139fcb35549401d74268040cfd Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Fri, 18 Feb 2011 01:00:05 +0000 Subject: [PATCH] Fix wrong static calls --- tests/phpunit/includes/Providers.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/phpunit/includes/Providers.php b/tests/phpunit/includes/Providers.php index 90c9eb31d8..2d041eadef 100644 --- a/tests/phpunit/includes/Providers.php +++ b/tests/phpunit/includes/Providers.php @@ -32,8 +32,8 @@ class MediaWikiProvide { public function DaysMonths() { $ret = array(); - $months = self::Months(); - $days = self::Days(); + $months = $this->Months(); + $days = $this->Days(); foreach( $months as $month) { foreach( $days as $day ) { $ret[] = array( $day[0], $month[0] ); -- 2.20.1