diff --git a/webapp/tests/Unit/Controller/Jury/UserControllerTest.php b/webapp/tests/Unit/Controller/Jury/UserControllerTest.php index 3e6d6ce6c4..5fcead413c 100644 --- a/webapp/tests/Unit/Controller/Jury/UserControllerTest.php +++ b/webapp/tests/Unit/Controller/Jury/UserControllerTest.php @@ -84,9 +84,9 @@ class UserControllerTest extends JuryControllerTestCase ['username' => 'usérname', 'name' => 'NonPrintable'], ['username' => 'username⚠', 'name' => 'SpecialSymbol']], 'This value should not be blank.' => [['username' => '', 'name' => 'Empty']], - 'This is not a valid IP address.' => [['ipAddress' => '1.1.1'], - ['ipAddress' => '256.1.1.1'], - ['ipAddress' => '1.1.1.256'], - ['ipAddress' => '1.1.1.1.1'], - ['ipAddress' => '::g']]]; + 'This value is not a valid IP address.' => [['ipAddress' => '1.1.1'], + ['ipAddress' => '256.1.1.1'], + ['ipAddress' => '1.1.1.256'], + ['ipAddress' => '1.1.1.1.1'], + ['ipAddress' => '::g']]]; }