From 4bbe1ab5a9a3aabe9479207fc6479ddd7dd13c0d Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 5 Aug 2019 18:09:20 +0000 Subject: [PATCH] Coding Standards: Fix WPCS violation in [45754]. See #46570. git-svn-id: https://develop.svn.wordpress.org/trunk@45755 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/tests/functions.php b/tests/phpunit/tests/functions.php index 12ad13a78c..2191af7ddb 100644 --- a/tests/phpunit/tests/functions.php +++ b/tests/phpunit/tests/functions.php @@ -235,7 +235,7 @@ class Tests_Functions extends WP_UnitTestCase { function test_is_serialized_should_return_true_for_large_floats() { $cases = array( serialize( 1.7976931348623157E+308 ), - serialize( array( 1.7976931348623157E+308, 1.23e50 ) ) + serialize( array( 1.7976931348623157E+308, 1.23e50 ) ), ); foreach ( $cases as $case ) {