We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 450ec5d commit 70b7015Copy full SHA for 70b7015
webapp/tests/Unit/Controller/Jury/UserControllerTest.php
@@ -84,9 +84,9 @@ class UserControllerTest extends JuryControllerTestCase
84
['username' => 'usérname', 'name' => 'NonPrintable'],
85
['username' => 'username⚠', 'name' => 'SpecialSymbol']],
86
'This value should not be blank.' => [['username' => '', 'name' => 'Empty']],
87
- 'This is not a valid IP address.' => [['ipAddress' => '1.1.1'],
88
- ['ipAddress' => '256.1.1.1'],
89
- ['ipAddress' => '1.1.1.256'],
90
- ['ipAddress' => '1.1.1.1.1'],
91
- ['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']]];
92
}
0 commit comments