Coding Standards: Fix WPCS violation in [45754].

See #46570.

git-svn-id: https://develop.svn.wordpress.org/trunk@45755 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2019-08-05 18:09:20 +00:00
parent fad1821dd7
commit 4bbe1ab5a9
1 changed files with 1 additions and 1 deletions

View File

@ -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 ) {