Skip to content

Commit

Permalink
Coding Standards: Fix WPCS violation in [45754].
Browse files Browse the repository at this point in the history
See #46570.

git-svn-id: https://develop.svn.wordpress.org/trunk@45755 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
SergeyBiryukov committed Aug 5, 2019
1 parent fad1821 commit 4bbe1ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/phpunit/tests/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ function test_is_serialized() {
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 ) {
Expand Down

0 comments on commit 4bbe1ab

Please sign in to comment.