File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -66,8 +66,8 @@ public function testValues(): void
6666 $ this ->assertEquals (false , $ this ->object ->isValid ('as+5dasdasdas ' ));
6767 $ this ->assertEquals (false , $ this ->object ->isValid ('as=5dasdasdas ' ));
6868
69- // At most 255 chars
70- $ this ->assertEquals (true , $ this ->object ->isValid (str_repeat ('a ' , 255 )));
69+ // At most 36 chars
70+ $ this ->assertEquals (true , $ this ->object ->isValid (str_repeat ('a ' , 36 )));
7171 $ this ->assertEquals (false , $ this ->object ->isValid (str_repeat ('a ' , 256 )));
7272
7373 // Internal keys
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ public function testValues(): void
5959 $ this ->assertEquals (false , $ this ->object ->isValid ('as=5dasdasdas ' ));
6060
6161 // At most 255 chars
62- $ this ->assertEquals (true , $ this ->object ->isValid (str_repeat ('a ' , 255 )));
62+ $ this ->assertEquals (true , $ this ->object ->isValid (str_repeat ('a ' , 36 )));
6363 $ this ->assertEquals (false , $ this ->object ->isValid (str_repeat ('a ' , 256 )));
6464 }
6565}
You can’t perform that action at this time.
0 commit comments