From 01f410911b912b57f46d5e362b5e157d1bc0ac69 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Tue, 13 Dec 2011 15:47:04 +0000 Subject: [PATCH] Seriously, don't use "wgOut" as a function parameter name --- tests/phpunit/includes/api/ApiQueryTest.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/phpunit/includes/api/ApiQueryTest.php b/tests/phpunit/includes/api/ApiQueryTest.php index 114eadf301..e838acfe79 100644 --- a/tests/phpunit/includes/api/ApiQueryTest.php +++ b/tests/phpunit/includes/api/ApiQueryTest.php @@ -50,7 +50,6 @@ class ApiQueryTest extends ApiTestCase { 'action' => 'query', 'titles' => $title . '|Talk:' ) ); - $this->assertArrayHasKey( 'query', $data[0] ); $this->assertArrayHasKey( 'pages', $data[0]['query'] ); $this->assertEquals( 2, count( $data[0]['query']['pages'] ) ); @@ -60,8 +59,6 @@ class ApiQueryTest extends ApiTestCase { $this->assertArrayHasKey( 'missing', $data[0]['query']['pages'][-2] ); $this->assertArrayHasKey( 'invalid', $data[0]['query']['pages'][-1] ); - - } } -- 2.20.1