Skip to content

Commit 448f857

Browse files
Tests: Correct duplicate data set key in sanitize_key() tests.
Follow-up to [52292]. Props Soean. See #64894. git-svn-id: https://develop.svn.wordpress.org/trunk@62638 602fd350-edb4-49c9-b593-d223f7449a82
1 parent a13c8a2 commit 448f857

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/phpunit/tests/formatting/sanitizeKey.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function data_sanitize_key() {
3333
'key' => 'howdy,admin',
3434
'expected' => 'howdyadmin',
3535
),
36-
'a lowercase key with commas' => array(
36+
'an uppercase key with commas' => array(
3737
'key' => 'HOWDY,ADMIN',
3838
'expected' => 'howdyadmin',
3939
),

0 commit comments

Comments
 (0)