Skip to content

Commit

Permalink
#4159: Increase textfields maxlength - fix for test
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-korn authored and dafeder committed Jul 2, 2024
1 parent 4e81cc8 commit 23ed940
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,7 @@ public function testSchema() {
'#description_display' => 'before',
"#default_value" => "org:Organization",
"#required" => FALSE,
'#maxlength' => 256,
],
"name" => [
"#type" => "textfield",
Expand All @@ -251,6 +252,7 @@ public function testSchema() {
'#description_display' => 'before',
"#default_value" => NULL,
"#required" => TRUE,
'#maxlength' => 256,
],
],
],
Expand Down Expand Up @@ -292,6 +294,7 @@ public function testSchema() {
"#type" => "textfield",
"#title" => "Tag",
"#required" => FALSE,
'#maxlength' => 256,
],
],
],
Expand Down Expand Up @@ -341,6 +344,7 @@ public function testSchema() {
"#type" => "textfield",
"#title" => "Tag",
"#required" => TRUE,
'#maxlength' => 256,
],
],
],
Expand Down

0 comments on commit 23ed940

Please sign in to comment.