diff --git a/core/modules/views/tests/modules/views_test_config/test_views/views.view.test_group_rows.yml b/core/modules/views/tests/modules/views_test_config/test_views/views.view.test_group_rows.yml index 897f20d..39ae214 100644 --- a/core/modules/views/tests/modules/views_test_config/test_views/views.view.test_group_rows.yml +++ b/core/modules/views/tests/modules/views_test_config/test_views/views.view.test_group_rows.yml @@ -7,7 +7,6 @@ dependencies: - user config: - field.storage.node.field_views_testing_group_rows - module: id: test_group_rows label: test_group_rows module: views diff --git a/core/tests/Drupal/Tests/Component/Serialization/YamlTest.php b/core/tests/Drupal/Tests/Component/Serialization/YamlTest.php index b15898f..19d21af 100644 --- a/core/tests/Drupal/Tests/Component/Serialization/YamlTest.php +++ b/core/tests/Drupal/Tests/Component/Serialization/YamlTest.php @@ -77,7 +77,7 @@ public function testGetFileExtension() { public function testYamlFiles($file) { $data = file_get_contents($file); try { - $this->assertEquals(YamlSymfony::decode($data), YamlPecl::decode($data)); + $this->assertEquals(YamlSymfony::decode($data), YamlPecl::decode($data), $file); } catch (InvalidDataTypeException $e) { // Provide file context to the failure so the exception message is useful.