diff --git a/core/modules/dblog/src/Tests/Update/DblogFiltersAndFieldsUpgradeTest.php b/core/modules/dblog/src/Tests/Update/DblogFiltersAndFieldsUpgradeTest.php index 4a8ddef..fc903f1 100644 --- a/core/modules/dblog/src/Tests/Update/DblogFiltersAndFieldsUpgradeTest.php +++ b/core/modules/dblog/src/Tests/Update/DblogFiltersAndFieldsUpgradeTest.php @@ -35,12 +35,12 @@ public function testDblogUpgradePath() { $data = $view->storage->toArray(); $fields = $data['display']['default']['display_options']['fields']; - // wid and uid should use the standard plugin now. + // The 'wid' and 'uid' fields should use the standard plugin now. $this->assertEqual('standard', $fields['wid']['plugin_id']); $this->assertEqual('standard', $fields['uid']['plugin_id']); $filters = $data['display']['default']['display_options']['filters']; - // Type should use the dblog_types plugin now. + // The 'type' filter should use the dblog_types plugin now. $this->assertEqual('dblog_types', $filters['type']['plugin_id']); } diff --git a/core/modules/dblog/tests/modules/dblog_test_views/test_views/views.view.dblog_2851293.yml b/core/modules/dblog/tests/modules/dblog_test_views/test_views/views.view.dblog_2851293.yml index 7b00887..470a1f0 100644 --- a/core/modules/dblog/tests/modules/dblog_test_views/test_views/views.view.dblog_2851293.yml +++ b/core/modules/dblog/tests/modules/dblog_test_views/test_views/views.view.dblog_2851293.yml @@ -146,4 +146,3 @@ display: - 'languages:language_interface' - user.permissions tags: { } - diff --git a/core/modules/dblog/tests/modules/dblog_test_views/test_views/views.view.dblog_integration_test.yml b/core/modules/dblog/tests/modules/dblog_test_views/test_views/views.view.dblog_integration_test.yml index 69209f8..5e701ab 100644 --- a/core/modules/dblog/tests/modules/dblog_test_views/test_views/views.view.dblog_integration_test.yml +++ b/core/modules/dblog/tests/modules/dblog_test_views/test_views/views.view.dblog_integration_test.yml @@ -503,4 +503,3 @@ display: - url.query_args - user.permissions tags: { } - diff --git a/core/modules/dblog/tests/src/Kernel/Views/ViewsIntegrationTest.php b/core/modules/dblog/tests/src/Kernel/Views/ViewsIntegrationTest.php index bcd35bc..67d693f 100644 --- a/core/modules/dblog/tests/src/Kernel/Views/ViewsIntegrationTest.php +++ b/core/modules/dblog/tests/src/Kernel/Views/ViewsIntegrationTest.php @@ -123,7 +123,7 @@ public function testFiltering() { 'group' => 1, 'exposed' => FALSE, 'plugin_id' => 'in_operator', - ] + ], ]; $view->setDisplay('page_1'); @@ -153,7 +153,7 @@ public function testFiltering() { 'exposed' => FALSE, 'is_grouped' => FALSE, 'plugin_id' => 'dblog_types', - ] + ], ]; $view->setDisplay('page_1'); @@ -168,6 +168,7 @@ public function testFiltering() { /** * Create a set of log entries. + * * @return array * An array of data used to create the log entries. */ @@ -204,7 +205,7 @@ protected function createLogEntries() { $entries[] = [ 'message' => 'My module message', 'severity' => RfcLogLevel::INFO, - 'type' => 'my-module' + 'type' => 'my-module', ]; $logger_factory = $this->container->get('logger.factory');