From b2f23e12594edde227d04877b75252e76ad803c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20W=C3=BCnsch?= Date: Wed, 24 Jun 2026 14:47:04 +0200 Subject: [PATCH] Tests: Fix duplicate data set key in `data_sanitize_key()`. --- tests/phpunit/tests/formatting/sanitizeKey.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/tests/formatting/sanitizeKey.php b/tests/phpunit/tests/formatting/sanitizeKey.php index e39dd328db569..bdf1c881d7611 100644 --- a/tests/phpunit/tests/formatting/sanitizeKey.php +++ b/tests/phpunit/tests/formatting/sanitizeKey.php @@ -33,7 +33,7 @@ public function data_sanitize_key() { 'key' => 'howdy,admin', 'expected' => 'howdyadmin', ), - 'a lowercase key with commas' => array( + 'an uppercase key with commas' => array( 'key' => 'HOWDY,ADMIN', 'expected' => 'howdyadmin', ),