diff --git a/core/modules/link/src/Tests/LinkFieldTest.php b/core/modules/link/src/Tests/LinkFieldTest.php index 1a5f155..99976bc 100644 --- a/core/modules/link/src/Tests/LinkFieldTest.php +++ b/core/modules/link/src/Tests/LinkFieldTest.php @@ -376,10 +376,10 @@ function testLinkFormatter() { 'rel' => array(NULL, 'nofollow'), 'target' => array(NULL, '_blank'), 'url_only' => array( - array('url_only' => array(FALSE)), - array('url_only' => array(FALSE), 'url_plain' => TRUE), - array('url_only' => array(TRUE)), - array('url_only' => array(TRUE), 'url_plain' => TRUE), + array('url_only' => FALSE), + array('url_only' => FALSE, 'url_plain' => TRUE), + array('url_only' => TRUE), + array('url_only' => TRUE, 'url_plain' => TRUE), ), ); foreach ($options as $setting => $values) { diff --git a/core/modules/update/tests/modules/update_test/config/schema/update_test.schema.yml b/core/modules/update/tests/modules/update_test/config/schema/update_test.schema.yml index 2235f2b..e7f5eef 100644 --- a/core/modules/update/tests/modules/update_test/config/schema/update_test.schema.yml +++ b/core/modules/update/tests/modules/update_test/config/schema/update_test.schema.yml @@ -8,8 +8,11 @@ update_test.settings: type: sequence label: 'System info' sequence: - - type: string - label: 'Value' + - type: sequence + label: 'Items' + sequence: + - type: string + label: 'Item' update_status: type: sequence label: 'Update status' diff --git a/core/modules/user/config/schema/user.views.schema.yml b/core/modules/user/config/schema/user.views.schema.yml index 55ea1c4..fc8a7fd 100644 --- a/core/modules/user/config/schema/user.views.schema.yml +++ b/core/modules/user/config/schema/user.views.schema.yml @@ -9,11 +9,15 @@ views.access.perm: label: 'Permission' views.access.role: - type: sequence - label: 'Role' - sequence: - - type: string - label: 'Role' + type: mapping + label: 'Roles' + mapping: + role: + type: sequence + label: 'List of roles' + sequence: + - type: string + label: 'Role' views.argument.user_uid: type: views.argument.numeric