diff --git a/tests/phpunit/tests/functions/isWpVersionCompatible.php b/tests/phpunit/tests/functions/isWpVersionCompatible.php index e3cd4ab12f454..ef7f4c33c7413 100644 --- a/tests/phpunit/tests/functions/isWpVersionCompatible.php +++ b/tests/phpunit/tests/functions/isWpVersionCompatible.php @@ -87,15 +87,14 @@ public function data_is_wp_version_compatible() { ), // Improper WP version. - 'improper trailing x.x.0' => array( + 'improper trailing x.x.0' => array( 'required' => '5.2.0', 'expected' => true, ), - 'correct version' => array( + 'correct version' => array( 'required' => '5.2', 'expected' => true, ), - ); }