Improve assertion type

This commit is contained in:
Dan Hensby 2018-09-26 23:25:27 +01:00
parent 90e74a608e
commit 7a18cd98e0
No known key found for this signature in database
GPG Key ID: 3906B235643EF10B

View File

@ -219,7 +219,7 @@ class HTTPTest extends FunctionalTest
sort($result);
sort($expected);
$this->assertTrue(is_array($result));
$this->assertInternalType('array', $result);
$this->assertEquals($expected, $result, 'Test that all links within the content are found.');
}