From 847b958a31ca647c19bb925b746148a7773ed4a9 Mon Sep 17 00:00:00 2001 From: Volodymyr Kolesnykov Date: Tue, 24 Dec 2024 05:02:07 +0200 Subject: [PATCH] fix: the order is `expected, actual` --- tests/parsely/test-mu-parsely-integration.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/parsely/test-mu-parsely-integration.php b/tests/parsely/test-mu-parsely-integration.php index 7fa0e65824..5a16ad8cab 100644 --- a/tests/parsely/test-mu-parsely-integration.php +++ b/tests/parsely/test-mu-parsely-integration.php @@ -337,7 +337,7 @@ public function test_parsely_configs_for_managed_mode() { $configs = Parsely_Loader_Info::get_configs(); // Assert. - $this->assertEquals( $configs, array( + $this->assertEquals( array( 'is_pinned_version' => has_filter( 'wpvip_parsely_version' ), 'site_id' => is_latest_version() ? 'site_id_value' : '', 'have_api_secret' => is_latest_version() ? true : false, @@ -358,7 +358,7 @@ public function test_parsely_configs_for_managed_mode() { 'track_type' => 'do-not-track', ), ), - ) ); + ), $configs ); } public function test_alter_option_use_repeated_metas() {