From bdf61ef6a08246126e9d828dd032056bcdca52e6 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Sat, 1 Nov 2014 01:10:39 +0000 Subject: [PATCH] Fix failing unit tests after [30096]: use `assertEqualSets()`. git-svn-id: https://develop.svn.wordpress.org/trunk@30135 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/comment/query.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/phpunit/tests/comment/query.php b/tests/phpunit/tests/comment/query.php index 9d5f171b8c..9345851b2f 100644 --- a/tests/phpunit/tests/comment/query.php +++ b/tests/phpunit/tests/comment/query.php @@ -325,7 +325,7 @@ class Tests_Comment_Query extends WP_UnitTestCase { 'fields' => 'ids', ) ); - $this->assertEquals( array( $c3, $c2 ), $found ); + $this->assertEqualSets( array( $c3, $c2 ), $found ); } /** @@ -378,7 +378,7 @@ class Tests_Comment_Query extends WP_UnitTestCase { 'fields' => 'ids', ) ); - $this->assertEquals( array( $c3, $c2 ), $found ); + $this->assertEqualSets( array( $c3, $c2 ), $found ); } /**