From a70be65d1f4a0bee8628e5c5eccc58916ba6c316 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 14 Sep 2019 15:18:10 +0000 Subject: [PATCH] Coding Standards: Fix WPCS issue in [46107]. See #46631. git-svn-id: https://develop.svn.wordpress.org/trunk@46108 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/functions/getStatusHeaderDesc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/tests/functions/getStatusHeaderDesc.php b/tests/phpunit/tests/functions/getStatusHeaderDesc.php index 09634afc70..0b4ec37661 100644 --- a/tests/phpunit/tests/functions/getStatusHeaderDesc.php +++ b/tests/phpunit/tests/functions/getStatusHeaderDesc.php @@ -32,7 +32,7 @@ class Tests_Functions_get_status_header_desc extends WP_UnitTestCase { array( 500, 'Internal Server Error' ), // A string to make sure that the absint() is working. - array( "200", 'OK' ), + array( '200', 'OK' ), // Not recognized codes return empty strings. array( 9999, '' ),