diff --git a/core/modules/content_translation/tests/src/Functional/ContentTranslationLanguageChangeTest.php b/core/modules/content_translation/tests/src/Functional/ContentTranslationLanguageChangeTest.php
index 4cecee0dccb2f0c401e388dece0deee9b1086087..d9d92e13519df83c931c3527bb9c821542e7bcdf 100644
--- a/core/modules/content_translation/tests/src/Functional/ContentTranslationLanguageChangeTest.php
+++ b/core/modules/content_translation/tests/src/Functional/ContentTranslationLanguageChangeTest.php
@@ -72,7 +72,7 @@ protected function setUp(): void {
 
     $this->rebuildContainer();
 
-    $this->createImageField('field_image_field', 'article');
+    $this->createImageField('field_image_field', 'node', 'article');
   }
 
   /**
diff --git a/core/modules/image/tests/src/Functional/ImageAdminStylesTest.php b/core/modules/image/tests/src/Functional/ImageAdminStylesTest.php
index 790752cd725be8250a19e2fd37e0fce053f9f85b..5233bc888caa6d894b9308e178dbf3f6be1692da 100644
--- a/core/modules/image/tests/src/Functional/ImageAdminStylesTest.php
+++ b/core/modules/image/tests/src/Functional/ImageAdminStylesTest.php
@@ -317,7 +317,7 @@ public function testStyleReplacement() {
 
     // Create an image field that uses the new style.
     $field_name = $this->randomMachineName(10);
-    $this->createImageField($field_name, 'article');
+    $this->createImageField($field_name, 'node', 'article');
     \Drupal::service('entity_display.repository')
       ->getViewDisplay('node', 'article')
       ->setComponent($field_name, [
@@ -470,7 +470,7 @@ public function testConfigImport() {
 
     // Create an image field that uses the new style.
     $field_name = $this->randomMachineName(10);
-    $this->createImageField($field_name, 'article');
+    $this->createImageField($field_name, 'node', 'article');
     \Drupal::service('entity_display.repository')
       ->getViewDisplay('node', 'article')
       ->setComponent($field_name, [
diff --git a/core/modules/image/tests/src/Functional/ImageFieldDefaultImagesTest.php b/core/modules/image/tests/src/Functional/ImageFieldDefaultImagesTest.php
index 90cb9335ff30ea8685896ed6f9acd33eae975811..6da021fdcc7b7bdc304fc3cbff12c7389aea9137 100644
--- a/core/modules/image/tests/src/Functional/ImageFieldDefaultImagesTest.php
+++ b/core/modules/image/tests/src/Functional/ImageFieldDefaultImagesTest.php
@@ -81,7 +81,7 @@ public function testDefaultImages() {
     $widget_settings = [
       'preview_image_style' => 'medium',
     ];
-    $field = $this->createImageField($field_name, 'article', $storage_settings, $field_settings, $widget_settings);
+    $field = $this->createImageField($field_name, 'node', 'article', $storage_settings, $field_settings, $widget_settings);
 
     // The field default image id should be 2.
     $this->assertEquals($default_images['field']->uuid(), $field->getSetting('default_image')['uuid']);
diff --git a/core/modules/image/tests/src/Functional/ImageFieldDisplayTest.php b/core/modules/image/tests/src/Functional/ImageFieldDisplayTest.php
index 62ced9b20be899193d5ece99210affb3ac725cd9..78dacd79a702cc0d97b49a4a7b5b07b1d3b2224a 100644
--- a/core/modules/image/tests/src/Functional/ImageFieldDisplayTest.php
+++ b/core/modules/image/tests/src/Functional/ImageFieldDisplayTest.php
@@ -64,7 +64,7 @@ public function _testImageFieldFormatters($scheme) {
     $node_storage = $this->container->get('entity_type.manager')->getStorage('node');
     $field_name = $this->randomMachineName();
     $field_settings = ['alt_field_required' => 0];
-    $instance = $this->createImageField($field_name, 'article', ['uri_scheme' => $scheme], $field_settings);
+    $instance = $this->createImageField($field_name, 'node', 'article', ['uri_scheme' => $scheme], $field_settings);
 
     // Go to manage display page.
     $this->drupalGet("admin/structure/types/manage/article/display");
@@ -261,7 +261,7 @@ public function testImageFieldSettings() {
     $widget_settings = [
       'preview_image_style' => 'medium',
     ];
-    $field = $this->createImageField($field_name, 'article', [], $field_settings, $widget_settings);
+    $field = $this->createImageField($field_name, 'node', 'article', [], $field_settings, $widget_settings);
 
     // Verify that the min/max dimensions set on the field are properly
     // extracted, and displayed, on the image field's configuration form.
@@ -369,7 +369,7 @@ public function testImageLoadingAttribute(): void {
     $node_storage = $this->container->get('entity_type.manager')->getStorage('node');
     $field_name = $this->randomMachineName();
     $field_settings = ['alt_field_required' => 0];
-    $instance = $this->createImageField($field_name, 'article', [], $field_settings);
+    $instance = $this->createImageField($field_name, 'node', 'article', [], $field_settings);
 
     // Go to manage display page.
     $this->drupalGet("admin/structure/types/manage/article/display");
@@ -484,7 +484,7 @@ public function testImageFieldDefaultImage() {
     $node_storage = $this->container->get('entity_type.manager')->getStorage('node');
     // Create a new image field.
     $field_name = $this->randomMachineName();
-    $this->createImageField($field_name, 'article');
+    $this->createImageField($field_name, 'node', 'article');
 
     // Create a new node, with no images and verify that no images are
     // displayed.
@@ -573,7 +573,7 @@ public function testImageFieldDefaultImage() {
     // Create an image field that uses the private:// scheme and test that the
     // default image works as expected.
     $private_field_name = $this->randomMachineName();
-    $this->createImageField($private_field_name, 'article', ['uri_scheme' => 'private']);
+    $this->createImageField($private_field_name, 'node', 'article', ['uri_scheme' => 'private']);
     // Add a default image to the new field.
     $edit = [
       // Get the path of the 'image-test.gif' file.
diff --git a/core/modules/image/tests/src/Functional/ImageFieldValidateTest.php b/core/modules/image/tests/src/Functional/ImageFieldValidateTest.php
index 3ea7732693c8f9c970c705c61a52fb92d4ad91ed..b7f567cff4d62ffd24f7636f7f6d996ada8a5085 100644
--- a/core/modules/image/tests/src/Functional/ImageFieldValidateTest.php
+++ b/core/modules/image/tests/src/Functional/ImageFieldValidateTest.php
@@ -33,7 +33,7 @@ public function testValid() {
     $image_files = $this->drupalGetTestFiles('image');
 
     $field_name = $this->randomMachineName();
-    $this->createImageField($field_name, 'article', [], ['file_directory' => 'test-upload']);
+    $this->createImageField($field_name, 'node', 'article', [], ['file_directory' => 'test-upload']);
     $expected_path = 'public://test-upload';
 
     // Create alt text for the image.
@@ -125,9 +125,9 @@ public function testResolution() {
       1 => $this->getFieldSettings($no_height_min_resolution, $no_height_max_resolution),
       2 => $this->getFieldSettings($no_width_min_resolution, $no_width_max_resolution),
     ];
-    $this->createImageField($field_names[0], 'article', [], $field_settings[0]);
-    $this->createImageField($field_names[1], 'article', [], $field_settings[1]);
-    $this->createImageField($field_names[2], 'article', [], $field_settings[2]);
+    $this->createImageField($field_names[0], 'node', 'article', [], $field_settings[0]);
+    $this->createImageField($field_names[1], 'node', 'article', [], $field_settings[1]);
+    $this->createImageField($field_names[2], 'node', 'article', [], $field_settings[2]);
 
     // We want a test image that is too small, and a test image that is too
     // big, so cycle through test image files until we have what we need.
@@ -174,7 +174,7 @@ public function testRequiredAttributes() {
       'title_field_required' => 1,
       'required' => 1,
     ];
-    $instance = $this->createImageField($field_name, 'article', [], $field_settings);
+    $instance = $this->createImageField($field_name, 'node', 'article', [], $field_settings);
     $images = $this->drupalGetTestFiles('image');
     // Let's just use the first image.
     $image = $images[0];
@@ -223,7 +223,7 @@ public function testRequiredAttributes() {
    * @dataProvider providerTestEmpty
    */
   public function testEmpty($field_name, $required, $cardinality, $form_element_name, $expected_page_text_when_edit_access_allowed, $expected_page_text_when_edit_access_forbidden) {
-    $this->createImageField($field_name, 'article', ['cardinality' => $cardinality], ['required' => $required]);
+    $this->createImageField($field_name, 'node', 'article', ['cardinality' => $cardinality], ['required' => $required]);
 
     // Test with field edit access allowed.
     $this->drupalGet('node/add/article');
diff --git a/core/modules/image/tests/src/Functional/ImageFieldWidgetTest.php b/core/modules/image/tests/src/Functional/ImageFieldWidgetTest.php
index 24b308b628a11901f0d7b40fe3d285bc76d7d327..976e77cde7722e5a8a9d31990119a6378f79dadb 100644
--- a/core/modules/image/tests/src/Functional/ImageFieldWidgetTest.php
+++ b/core/modules/image/tests/src/Functional/ImageFieldWidgetTest.php
@@ -31,7 +31,7 @@ public function testWidgetElement() {
       'min_resolution' => $min_resolution . 'x' . $min_resolution,
       'alt_field' => 0,
     ];
-    $this->createImageField($field_name, 'article', [], $field_settings, [], [], 'Image test on [site:name]');
+    $this->createImageField($field_name, 'node', 'article', [], $field_settings, [], [], 'Image test on [site:name]');
     $this->drupalGet('node/add/article');
     // Verify that the image field widget is found on add/node page.
     $this->assertSession()->elementExists('xpath', '//div[contains(@class, "field--widget-image-image")]');
diff --git a/core/modules/image/tests/src/Functional/ImageOnTranslatedEntityTest.php b/core/modules/image/tests/src/Functional/ImageOnTranslatedEntityTest.php
index 195399809298d7256ec0095929fc87d23b98a65c..52a78e2138de5c161392f7d0adf8aad7f963a594 100644
--- a/core/modules/image/tests/src/Functional/ImageOnTranslatedEntityTest.php
+++ b/core/modules/image/tests/src/Functional/ImageOnTranslatedEntityTest.php
@@ -56,7 +56,7 @@ protected function setUp(): void {
 
     // Create an image field on the "Basic page" node type.
     $this->fieldName = $this->randomMachineName();
-    $this->createImageField($this->fieldName, 'basic_page', [], ['title_field' => 1]);
+    $this->createImageField($this->fieldName, 'node', 'basic_page', [], ['title_field' => 1]);
 
     // Create and log in user.
     $permissions = [
diff --git a/core/modules/image/tests/src/Functional/ImageStyleDeleteTest.php b/core/modules/image/tests/src/Functional/ImageStyleDeleteTest.php
index b60d2b7da1268f313f3a378bf4bf9cba5ae9e8c1..4d8bbf15583ebeed672dff7d6bab82290b3b7592 100644
--- a/core/modules/image/tests/src/Functional/ImageStyleDeleteTest.php
+++ b/core/modules/image/tests/src/Functional/ImageStyleDeleteTest.php
@@ -26,7 +26,7 @@ protected function setUp(): void {
     parent::setUp();
     // Create an image field 'foo' having the image style 'medium' as widget
     // preview and as formatter.
-    $this->createImageField('foo', 'page', [], [], ['preview_image_style' => 'medium'], ['image_style' => 'medium']);
+    $this->createImageField('foo', 'node', 'page', [], [], ['preview_image_style' => 'medium'], ['image_style' => 'medium']);
   }
 
   /**
diff --git a/core/modules/image/tests/src/FunctionalJavascript/ImageFieldValidateTest.php b/core/modules/image/tests/src/FunctionalJavascript/ImageFieldValidateTest.php
index 5b7d8ac99d12550170ec15b3289997b34c14c3b6..51920aefed736504a0a2fcab09ed2b07946c7d2e 100644
--- a/core/modules/image/tests/src/FunctionalJavascript/ImageFieldValidateTest.php
+++ b/core/modules/image/tests/src/FunctionalJavascript/ImageFieldValidateTest.php
@@ -24,7 +24,7 @@ class ImageFieldValidateTest extends ImageFieldTestBase {
    */
   public function testAJAXValidationMessage() {
     $field_name = $this->randomMachineName();
-    $this->createImageField($field_name, 'article', ['cardinality' => -1]);
+    $this->createImageField($field_name, 'node', 'article', ['cardinality' => -1]);
 
     $this->drupalGet('node/add/article');
     /** @var \Drupal\file\FileInterface[] $text_files */
@@ -73,7 +73,7 @@ public function testFriendlyAjaxValidation() {
       ->save();
 
     // Then, add an image field.
-    $this->createImageField('field_dummy_image', 'article');
+    $this->createImageField('field_dummy_image', 'node', 'article');
 
     // Open an article and trigger the AJAX handler.
     $this->drupalGet('node/add/article');
diff --git a/core/modules/image/tests/src/FunctionalJavascript/ImageFieldWidgetMultipleTest.php b/core/modules/image/tests/src/FunctionalJavascript/ImageFieldWidgetMultipleTest.php
index f4cd560158cb47dfe66927946652134ebaaa3906..ac253b33b39f3f5a829bbc6802dcd496136cffe4 100644
--- a/core/modules/image/tests/src/FunctionalJavascript/ImageFieldWidgetMultipleTest.php
+++ b/core/modules/image/tests/src/FunctionalJavascript/ImageFieldWidgetMultipleTest.php
@@ -42,7 +42,7 @@ public function testWidgetElementMultipleUploads(): void {
     $field_name = 'images';
     $storage_settings = ['cardinality' => FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED];
     $field_settings = ['alt_field_required' => 0];
-    $this->createImageField($field_name, 'article', $storage_settings, $field_settings);
+    $this->createImageField($field_name, 'node', 'article', $storage_settings, $field_settings);
     $this->drupalLogin($this->drupalCreateUser(['access content', 'create article content']));
     $this->drupalGet('node/add/article');
     $this->assertSession()->fieldExists('title[0][value]')->setValue('Test');
diff --git a/core/modules/image/tests/src/Kernel/ImageFieldCreationTrait.php b/core/modules/image/tests/src/Kernel/ImageFieldCreationTrait.php
index 9997b1a7052d3d60bffff80781186f8b8340f491..289fabd7769ce97e69b1c11c3dce99ec8a5bf19a 100644
--- a/core/modules/image/tests/src/Kernel/ImageFieldCreationTrait.php
+++ b/core/modules/image/tests/src/Kernel/ImageFieldCreationTrait.php
@@ -15,11 +15,13 @@ trait ImageFieldCreationTrait {
   /**
    * Create a new image field.
    *
-   * @param string $name
+   * @param string $field_name
    *   The name of the new field (all lowercase). The Field UI 'field_' prefix
    *   is not added to the field name.
-   * @param string $type_name
-   *   The node type that this field will be added to.
+   * @param string $entity_type
+   *   The entity type that this field will be added to.
+   * @param string $bundle
+   *   The bundle this field will be added to.
    * @param array $storage_settings
    *   (optional) A list of field storage settings that will be added to the
    *   defaults.
@@ -33,20 +35,20 @@ trait ImageFieldCreationTrait {
    * @param string $description
    *   (optional) A description for the field. Defaults to ''.
    */
-  protected function createImageField($name, $type_name, $storage_settings = [], $field_settings = [], $widget_settings = [], $formatter_settings = [], $description = '') {
+  protected function createImageField($field_name, $entity_type, $bundle, $storage_settings = [], $field_settings = [], $widget_settings = [], $formatter_settings = [], $description = '') {
     FieldStorageConfig::create([
-      'field_name' => $name,
-      'entity_type' => 'node',
+      'field_name' => $field_name,
+      'entity_type' => $entity_type,
       'type' => 'image',
       'settings' => $storage_settings,
       'cardinality' => !empty($storage_settings['cardinality']) ? $storage_settings['cardinality'] : 1,
     ])->save();
 
     $field_config = FieldConfig::create([
-      'field_name' => $name,
-      'label' => $name,
-      'entity_type' => 'node',
-      'bundle' => $type_name,
+      'field_name' => $field_name,
+      'label' => $field_name,
+      'entity_type' => $entity_type,
+      'bundle' => $bundle,
       'required' => !empty($field_settings['required']),
       'settings' => $field_settings,
       'description' => $description,
@@ -55,15 +57,14 @@ protected function createImageField($name, $type_name, $storage_settings = [], $
 
     /** @var \Drupal\Core\Entity\EntityDisplayRepositoryInterface $display_repository */
     $display_repository = \Drupal::service('entity_display.repository');
-    $display_repository->getFormDisplay('node', $type_name)
-      ->setComponent($name, [
+    $display_repository->getFormDisplay($entity_type, $bundle)
+      ->setComponent($field_name, [
         'type' => 'image_image',
         'settings' => $widget_settings,
       ])
       ->save();
-
-    $display_repository->getViewDisplay('node', $type_name)
-      ->setComponent($name, [
+    $display_repository->getViewDisplay($entity_type, $bundle)
+      ->setComponent($field_name, [
         'type' => 'image',
         'settings' => $formatter_settings,
       ])
diff --git a/core/modules/jsonapi/tests/src/Functional/JsonApiFunctionalTestBase.php b/core/modules/jsonapi/tests/src/Functional/JsonApiFunctionalTestBase.php
index 23dcf573d034023b61ed5cd06dd0da3c7f60a82a..239e8b9014d6745f038223339b9251a9264fc680 100644
--- a/core/modules/jsonapi/tests/src/Functional/JsonApiFunctionalTestBase.php
+++ b/core/modules/jsonapi/tests/src/Functional/JsonApiFunctionalTestBase.php
@@ -130,8 +130,8 @@ protected function setUp(): void {
         ],
         FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED
       );
-      $this->createImageField('field_image', 'article');
-      $this->createImageField('field_no_hero', 'article');
+      $this->createImageField('field_image', 'node', 'article');
+      $this->createImageField('field_no_hero', 'node', 'article');
     }
 
     FieldStorageConfig::create([
diff --git a/core/modules/jsonapi/tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php b/core/modules/jsonapi/tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php
index 7fb5d10f754ff112455c85f61a4baab1d0a4eff9..9c6e07cb98a0c82225442e826c8c2f0c9874edc6 100644
--- a/core/modules/jsonapi/tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php
+++ b/core/modules/jsonapi/tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php
@@ -158,7 +158,7 @@ protected function setUp(): void {
     );
     $this->createTextField('node', 'article', 'body', 'Body');
 
-    $this->createImageField('field_image', 'article');
+    $this->createImageField('field_image', 'node', 'article');
 
     $this->user = User::create([
       'name' => 'user1',
diff --git a/core/modules/jsonapi/tests/src/Kernel/Query/FilterTest.php b/core/modules/jsonapi/tests/src/Kernel/Query/FilterTest.php
index 3bb940aa2681bb54e58ee5cef5b9f7f185128233..5de336554e0a160a081cd7aeaf5eb5f732eae98c 100644
--- a/core/modules/jsonapi/tests/src/Kernel/Query/FilterTest.php
+++ b/core/modules/jsonapi/tests/src/Kernel/Query/FilterTest.php
@@ -297,7 +297,7 @@ protected function savePaintingType() {
       'shapes', 'Shapes',
       FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED
     );
-    $this->createImageField('photo', 'painting');
+    $this->createImageField('photo', 'node', 'painting');
   }
 
   /**
diff --git a/core/modules/layout_builder/tests/src/Functional/LayoutBuilderDefaultValuesTest.php b/core/modules/layout_builder/tests/src/Functional/LayoutBuilderDefaultValuesTest.php
index d0dc077772ca977c76161839f3cee528efa9e3db..fe7210c6081adeccf472b94d6631b5bc5917c375 100644
--- a/core/modules/layout_builder/tests/src/Functional/LayoutBuilderDefaultValuesTest.php
+++ b/core/modules/layout_builder/tests/src/Functional/LayoutBuilderDefaultValuesTest.php
@@ -319,7 +319,7 @@ protected function addImageFields() {
     $widget_settings = [
       'preview_image_style' => 'medium',
     ];
-    $this->createImageField($field_name, 'test_node_type', $storage_settings, $field_settings, $widget_settings);
+    $this->createImageField($field_name, 'node', 'test_node_type', $storage_settings, $field_settings, $widget_settings);
 
     $field_name = 'field_image_instance_default';
     $storage_settings['default_image'] = [
@@ -339,7 +339,7 @@ protected function addImageFields() {
     $widget_settings = [
       'preview_image_style' => 'medium',
     ];
-    $this->createImageField($field_name, 'test_node_type', $storage_settings, $field_settings, $widget_settings);
+    $this->createImageField($field_name, 'node', 'test_node_type', $storage_settings, $field_settings, $widget_settings);
 
     $field_name = 'field_image_both_defaults';
     $storage_settings['default_image'] = [
@@ -359,7 +359,7 @@ protected function addImageFields() {
     $widget_settings = [
       'preview_image_style' => 'medium',
     ];
-    $this->createImageField($field_name, 'test_node_type', $storage_settings, $field_settings, $widget_settings);
+    $this->createImageField($field_name, 'node', 'test_node_type', $storage_settings, $field_settings, $widget_settings);
 
     $field_name = 'field_image_no_default';
     $storage_settings = [];
@@ -367,7 +367,7 @@ protected function addImageFields() {
     $widget_settings = [
       'preview_image_style' => 'medium',
     ];
-    $this->createImageField($field_name, 'test_node_type', $storage_settings, $field_settings, $widget_settings);
+    $this->createImageField($field_name, 'node', 'test_node_type', $storage_settings, $field_settings, $widget_settings);
   }
 
   /**
diff --git a/core/modules/responsive_image/tests/src/Functional/ResponsiveImageFieldDisplayTest.php b/core/modules/responsive_image/tests/src/Functional/ResponsiveImageFieldDisplayTest.php
index b34c8fb2d3ef7a42253652a41a3306c9b4e9b17e..484d143591696e356e18edeb3e82121c935a3936 100644
--- a/core/modules/responsive_image/tests/src/Functional/ResponsiveImageFieldDisplayTest.php
+++ b/core/modules/responsive_image/tests/src/Functional/ResponsiveImageFieldDisplayTest.php
@@ -193,7 +193,7 @@ protected function doTestResponsiveImageFieldFormatters($scheme, $empty_styles =
     $renderer = $this->container->get('renderer');
     $node_storage = $this->container->get('entity_type.manager')->getStorage('node');
     $field_name = $this->randomMachineName();
-    $this->createImageField($field_name, 'article', ['uri_scheme' => $scheme]);
+    $this->createImageField($field_name, 'node', 'article', ['uri_scheme' => $scheme]);
     // Create a new node with an image attached. Make sure we use a large image
     // so the scale effects of the image styles always have an effect.
     $test_image = current($this->getTestFiles('image', 39325));
@@ -389,7 +389,7 @@ public function testResponsiveImageFieldFormattersEmptyMediaQuery() {
       ->save();
     $node_storage = $this->container->get('entity_type.manager')->getStorage('node');
     $field_name = $this->randomMachineName();
-    $this->createImageField($field_name, 'article', ['uri_scheme' => 'public']);
+    $this->createImageField($field_name, 'node', 'article', ['uri_scheme' => 'public']);
     // Create a new node with an image attached.
     $test_image = current($this->getTestFiles('image'));
     $nid = $this->uploadNodeImage($test_image, $field_name, 'article', $this->randomMachineName());
@@ -464,7 +464,7 @@ public function testResponsiveImageFieldFormattersMultipleSources() {
       ->save();
     $node_storage = $this->container->get('entity_type.manager')->getStorage('node');
     $field_name = $this->randomMachineName();
-    $this->createImageField($field_name, 'article', ['uri_scheme' => 'public']);
+    $this->createImageField($field_name, 'node', 'article', ['uri_scheme' => 'public']);
     // Create a new node with an image attached.
     $test_image = current($this->getTestFiles('image'));
     $nid = $this->uploadNodeImage($test_image, $field_name, 'article', $this->randomMachineName());
@@ -520,7 +520,7 @@ public function testResponsiveImageFieldFormattersMultipleSources() {
   private function assertResponsiveImageFieldFormattersLink(string $link_type): void {
     $field_name = $this->randomMachineName();
     $field_settings = ['alt_field_required' => 0];
-    $this->createImageField($field_name, 'article', ['uri_scheme' => 'public'], $field_settings);
+    $this->createImageField($field_name, 'node', 'article', ['uri_scheme' => 'public'], $field_settings);
     // Create a new node with an image attached.
     $test_image = current($this->getTestFiles('image'));