From 3828cfe6d6bb64df763276fa2bc2c4da6ccb06dd Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Thu, 24 Mar 2011 08:41:02 +0100 Subject: replace assertType with assertInternalType to please phpunit --- tests/ajax/GetAdminLinkedTagsTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/ajax/GetAdminLinkedTagsTest.php') diff --git a/tests/ajax/GetAdminLinkedTagsTest.php b/tests/ajax/GetAdminLinkedTagsTest.php index d8ec447..2552ea0 100644 --- a/tests/ajax/GetAdminLinkedTagsTest.php +++ b/tests/ajax/GetAdminLinkedTagsTest.php @@ -66,7 +66,7 @@ class ajax_GetAdminLinkedTagsTest extends TestBaseApi ); $data = json_decode($res->getBody()); - $this->assertType('array', $data); + $this->assertInternalType('array', $data); //same number of elements as the menu2Tags array $this->assertEquals( @@ -106,7 +106,7 @@ class ajax_GetAdminLinkedTagsTest extends TestBaseApi ); $data = json_decode($res->getBody()); - $this->assertType('array', $data); + $this->assertInternalType('array', $data); //only one subtag $this->assertEquals(1, count($data)); @@ -146,7 +146,7 @@ class ajax_GetAdminLinkedTagsTest extends TestBaseApi ); $data = json_decode($res->getBody()); - $this->assertType('array', $data); + $this->assertInternalType('array', $data); //we should have only one subtag now, the admin one $this->assertEquals(1, count($data)); -- cgit v1.2.3