Skip to content
Snippets Groups Projects
Unverified Commit 24856a75 authored by Lucas Hedding's avatar Lucas Hedding
Browse files

fix phpcs

parent b4fb65d5
No related branches found
No related tags found
1 merge request!6619#3106205 moved the system_update hook to 10202
......@@ -50,7 +50,7 @@ public function testSchemaLengthAfterUpdate(): void {
$results = $this->connection->query('SELECT CHARACTER_MAXIMUM_LENGTH FROM INFORMATION_SCHEMA.COLUMNS WHERE table_name = :menu AND COLUMN_NAME IN ( :column_names[] )', [
':menu' => $this->connection->schema()->prefixNonTable('menu_tree'),
':column_names[]' => ['route_param_key', 'url']
':column_names[]' => ['route_param_key', 'url'],
])->fetchCol();
$this->assertNotEmpty($results);
foreach ($results as $result) {
......@@ -61,7 +61,7 @@ public function testSchemaLengthAfterUpdate(): void {
$results = $this->connection->query('SELECT CHARACTER_MAXIMUM_LENGTH FROM INFORMATION_SCHEMA.COLUMNS WHERE table_name = :menu AND COLUMN_NAME IN ( :column_names[] )', [
':menu' => $this->connection->schema()->prefixNonTable('menu_tree'),
':column_names[]' => ['route_param_key', 'url']
':column_names[]' => ['route_param_key', 'url'],
])->fetchCol();
$this->assertNotEmpty($results);
foreach ($results as $result) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment