Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / image / tests / fixtures / update / test_scale_and_crop_add_anchor.php
diff --git a/web/core/modules/image/tests/fixtures/update/test_scale_and_crop_add_anchor.php b/web/core/modules/image/tests/fixtures/update/test_scale_and_crop_add_anchor.php
new file mode 100644 (file)
index 0000000..4fdc033
--- /dev/null
@@ -0,0 +1,19 @@
+<?php
+
+/**
+ * @file
+ * Test fixture.
+ */
+
+use Drupal\Core\Database\Database;
+use Drupal\Core\Serialization\Yaml;
+
+$connection = Database::getConnection();
+
+$connection->insert('config')
+  ->fields([
+    'collection' => '',
+    'name' => 'image.style.test_scale_and_crop_add_anchor',
+    'data' => serialize(Yaml::decode(file_get_contents('core/modules/image/tests/fixtures/update/image.image_style.test_scale_and_crop_add_anchor.yml'))),
+  ])
+  ->execute();