diff --git a/src/Tests/Experimental/ParagraphsExperimentalAddModesTest.php b/src/Tests/Experimental/ParagraphsExperimentalAddModesTest.php
index 26eba32..8d805c3 100644
--- a/src/Tests/Experimental/ParagraphsExperimentalAddModesTest.php
+++ b/src/Tests/Experimental/ParagraphsExperimentalAddModesTest.php
@@ -19,15 +19,15 @@ class ParagraphsExperimentalAddModesTest extends ParagraphsExperimentalTestBase
    */
   public function testNoDefaultValue() {
     $this->loginAsAdmin();
-    $this->addParagraphedContentType('paragraphed_test', 'paragraphs_field', 'paragraphs');
+    $this->addParagraphedContentType('paragraphed_test');
     // Edit the field.
     $this->drupalGet('admin/structure/types/manage/paragraphed_test/fields');
     $this->clickLink(t('Edit'));
 
     // Check that the current field does not allow to add default values.
-    $this->assertText('No widget available for: paragraphs_field.');
+    $this->assertText('No widget available for: field_paragraphs.');
     $this->drupalPostForm(NULL, [], t('Save settings'));
-    $this->assertText('Saved paragraphs_field configuration.');
+    $this->assertText('Saved field_paragraphs configuration.');
     $this->assertResponse(200);
   }
 
@@ -36,13 +36,13 @@ class ParagraphsExperimentalAddModesTest extends ParagraphsExperimentalTestBase
    */
   public function testEmptyAllowedTypes() {
     $this->loginAsAdmin();
-    $this->addParagraphedContentType('paragraphed_test', 'paragraphs', 'paragraphs');
+    $this->addParagraphedContentType('paragraphed_test');
 
     // Edit the field and save when there are no paragraphs types available.
     $this->drupalGet('admin/structure/types/manage/paragraphed_test/fields');
     $this->clickLink(t('Edit'));
     $this->drupalPostForm(NULL, [], t('Save settings'));
-    $this->assertText('Saved paragraphs configuration.');
+    $this->assertText('Saved field_paragraphs configuration.');
   }
 
   /**
@@ -54,7 +54,7 @@ class ParagraphsExperimentalAddModesTest extends ParagraphsExperimentalTestBase
     $this->addParagraphsType('btext');
     $this->addParagraphsType('dtext');
 
-    $this->addParagraphedContentType('paragraphed_test', 'paragraphs', 'paragraphs');
+    $this->addParagraphedContentType('paragraphed_test', 'paragraphs');
     // Enter to the field config since the weight is set through the form.
     $this->drupalGet('admin/structure/types/manage/paragraphed_test/fields/node.paragraphed_test.paragraphs');
     $this->drupalPostForm(NULL, [], 'Save settings');
@@ -88,7 +88,7 @@ class ParagraphsExperimentalAddModesTest extends ParagraphsExperimentalTestBase
     $this->addParagraphsType('btext');
     $this->addParagraphsType('dtext');
 
-    $this->addParagraphedContentType('paragraphed_test', 'paragraphs', 'paragraphs');
+    $this->addParagraphedContentType('paragraphed_test', 'paragraphs');
     // Enter to the field config since the weight is set through the form.
     $this->drupalGet('admin/structure/types/manage/paragraphed_test/fields/node.paragraphed_test.paragraphs');
     $this->drupalPostForm(NULL, [], 'Save settings');
@@ -152,7 +152,7 @@ class ParagraphsExperimentalAddModesTest extends ParagraphsExperimentalTestBase
    * Tests if setting for default paragraph type is working properly.
    */
   public function testSettingDefaultParagraphType() {
-    $this->addParagraphedContentType('paragraphed_test', 'paragraphs', 'paragraphs');
+    $this->addParagraphedContentType('paragraphed_test', 'paragraphs');
     $this->loginAsAdmin([
       'administer content types',
       'administer node form display',
@@ -198,7 +198,7 @@ class ParagraphsExperimentalAddModesTest extends ParagraphsExperimentalTestBase
    * Tests the default paragraph type behavior for a field with a single type.
    */
   public function testDefaultParagraphTypeWithSingleType() {
-    $this->addParagraphedContentType('paragraphed_test', 'paragraphs', 'paragraphs');
+    $this->addParagraphedContentType('paragraphed_test', 'paragraphs');
     $this->loginAsAdmin([
       'administer content types',
       'administer node form display',
diff --git a/src/Tests/Experimental/ParagraphsExperimentalAdministrationTest.php b/src/Tests/Experimental/ParagraphsExperimentalAdministrationTest.php
index 80f43b0..ee23500 100644
--- a/src/Tests/Experimental/ParagraphsExperimentalAdministrationTest.php
+++ b/src/Tests/Experimental/ParagraphsExperimentalAdministrationTest.php
@@ -38,7 +38,7 @@ class ParagraphsExperimentalAdministrationTest extends ParagraphsExperimentalTes
    * Tests the revision of paragraphs.
    */
   public function testParagraphsRevisions() {
-    $this->addParagraphedContentType('article', 'paragraphs', 'paragraphs');
+    $this->addParagraphedContentType('article', 'paragraphs');
     $this->loginAsAdmin([
       'create paragraphs content',
       'administer node display',
@@ -129,7 +129,7 @@ class ParagraphsExperimentalAdministrationTest extends ParagraphsExperimentalTes
    */
   public function testParagraphsCreation() {
     // Create an article with paragraphs field.
-    $this->addParagraphedContentType('article', 'field_paragraphs', 'paragraphs');
+    $this->addParagraphedContentType('article');
     $this->loginAsAdmin([
       'administer site configuration',
       'create article content',
diff --git a/src/Tests/Experimental/ParagraphsExperimentalBehaviorsTest.php b/src/Tests/Experimental/ParagraphsExperimentalBehaviorsTest.php
index 62f89c3..81daedc 100644
--- a/src/Tests/Experimental/ParagraphsExperimentalBehaviorsTest.php
+++ b/src/Tests/Experimental/ParagraphsExperimentalBehaviorsTest.php
@@ -25,7 +25,7 @@ class ParagraphsExperimentalBehaviorsTest extends ParagraphsExperimentalTestBase
    * Tests the behavior plugins for paragraphs.
    */
   public function testBehaviorPluginsFields() {
-    $this->addParagraphedContentType('paragraphed_test', 'field_paragraphs', 'paragraphs');
+    $this->addParagraphedContentType('paragraphed_test');
     $this->loginAsAdmin(['create paragraphed_test content', 'edit any paragraphed_test content']);
 
     // Add a Paragraph type.
@@ -196,7 +196,7 @@ class ParagraphsExperimentalBehaviorsTest extends ParagraphsExperimentalTestBase
    * Tests the behavior plugins summary for paragraphs closed mode.
    */
   public function testCollapsedSummary() {
-    $this->addParagraphedContentType('paragraphed_test', 'field_paragraphs', 'paragraphs');
+    $this->addParagraphedContentType('paragraphed_test');
     $this->loginAsAdmin([
       'create paragraphed_test content',
       'edit any paragraphed_test content',
@@ -218,7 +218,7 @@ class ParagraphsExperimentalBehaviorsTest extends ParagraphsExperimentalTestBase
     // Add a nested Paragraph type.
     $paragraph_type = 'nested_paragraph';
     $this->addParagraphsType($paragraph_type);
-    $this->addParagraphsField('nested_paragraph', 'paragraphs', 'paragraph', 'paragraphs');
+    $this->addParagraphsField('nested_paragraph', 'paragraphs', 'paragraph');
     // Enable plugins for the nested paragraph type.
     $edit = [
       'behavior_plugins[test_bold_text][enabled]' => TRUE,
@@ -263,7 +263,7 @@ class ParagraphsExperimentalBehaviorsTest extends ParagraphsExperimentalTestBase
    * Tests the behavior plugins subform state submit.
    */
   public function testBehaviorSubform() {
-    $this->addParagraphedContentType('paragraphed_test', 'field_paragraphs', 'paragraphs');
+    $this->addParagraphedContentType('paragraphed_test');
     $this->loginAsAdmin([
       'create paragraphed_test content',
       'edit any paragraphed_test content',
diff --git a/src/Tests/Experimental/ParagraphsExperimentalConfigTest.php b/src/Tests/Experimental/ParagraphsExperimentalConfigTest.php
index 48564c9..ed11c88 100644
--- a/src/Tests/Experimental/ParagraphsExperimentalConfigTest.php
+++ b/src/Tests/Experimental/ParagraphsExperimentalConfigTest.php
@@ -34,7 +34,7 @@ class ParagraphsExperimentalConfigTest extends ParagraphsExperimentalTestBase {
 
     // Add a paragraphed content type.
 
-    $this->addParagraphedContentType('paragraphed_test', 'paragraphs_field', 'paragraphs');
+    $this->addParagraphedContentType('paragraphed_test');
     $this->addParagraphsType('paragraph_type_test');
     $this->addParagraphsType('text');
 
@@ -47,12 +47,12 @@ class ParagraphsExperimentalConfigTest extends ParagraphsExperimentalTestBase {
     $edit = [
       'entity_types[node]' => TRUE,
       'settings[node][paragraphed_test][translatable]' => TRUE,
-      'settings[node][paragraphed_test][fields][paragraphs_field]' => FALSE,
+      'settings[node][paragraphed_test][fields][field_paragraphs]' => FALSE,
     ];
     $this->drupalPostForm('admin/config/regional/content-language', $edit, t('Save configuration'));
 
     // Create a node with a paragraph.
-    $this->drupalPostAjaxForm('node/add/paragraphed_test', [], 'paragraphs_field_paragraph_type_test_add_more');
+    $this->drupalPostAjaxForm('node/add/paragraphed_test', [], 'field_paragraphs_paragraph_type_test_add_more');
     $edit = ['title[0][value]' => 'paragraphed_title'];
     $this->drupalPostFormSave(NULL, $edit, t('Save and publish'), t('Save'), $edit + ['status[value]' => TRUE]);
 
@@ -80,7 +80,7 @@ class ParagraphsExperimentalConfigTest extends ParagraphsExperimentalTestBase {
     $this->drupalGet('admin/config/regional/content-language');
     $this->assertText('(* unsupported) Paragraphs fields do not support translation.');
 
-    $this->addParagraphedContentType('paragraphed_test', 'paragraphs_field', 'paragraphs');
+    $this->addParagraphedContentType('paragraphed_test');
     // Check error message is not displayed.
     $this->drupalGet('admin/config/regional/content-language');
     $this->assertText('(* unsupported) Paragraphs fields do not support translation.');
@@ -93,7 +93,7 @@ class ParagraphsExperimentalConfigTest extends ParagraphsExperimentalTestBase {
     $edit = [
       'entity_types[node]' => TRUE,
       'settings[node][paragraphed_test][translatable]' => TRUE,
-      'settings[node][paragraphed_test][fields][paragraphs_field]' => FALSE,
+      'settings[node][paragraphed_test][fields][field_paragraphs]' => FALSE,
     ];
     $this->drupalPostForm('admin/config/regional/content-language', $edit, t('Save configuration'));
 
@@ -103,19 +103,19 @@ class ParagraphsExperimentalConfigTest extends ParagraphsExperimentalTestBase {
     $this->assertNoRaw('<div class="messages messages--error');
 
     // Check content type field management warning.
-    $this->drupalGet('admin/structure/types/manage/paragraphed_test/fields/node.paragraphed_test.paragraphs_field');
+    $this->drupalGet('admin/structure/types/manage/paragraphed_test/fields/node.paragraphed_test.field_paragraphs');
     $this->assertText('Paragraphs fields do not support translation.');
 
     // Make the paragraphs field translatable.
     $edit = [
       'entity_types[node]' => TRUE,
       'settings[node][paragraphed_test][translatable]' => TRUE,
-      'settings[node][paragraphed_test][fields][paragraphs_field]' => TRUE,
+      'settings[node][paragraphed_test][fields][field_paragraphs]' => TRUE,
     ];
     $this->drupalPostForm('admin/config/regional/content-language', $edit, t('Save configuration'));
 
     // Check content type field management error.
-    $this->drupalGet('admin/structure/types/manage/paragraphed_test/fields/node.paragraphed_test.paragraphs_field');
+    $this->drupalGet('admin/structure/types/manage/paragraphed_test/fields/node.paragraphed_test.field_paragraphs');
     $this->assertText('Paragraphs fields do not support translation.');
     $this->assertRaw('<div class="messages messages--error');
 
@@ -123,8 +123,8 @@ class ParagraphsExperimentalConfigTest extends ParagraphsExperimentalTestBase {
     $this->drupalGet('admin/structure/types/manage/paragraphed_test/fields/add-field');
     $edit = [
       'new_storage_type' => 'field_ui:entity_reference:node',
-      'label' => 'new_no_paragraphs_field',
-      'field_name' => 'new_no_paragraphs_field',
+      'label' => 'new_no_field_paragraphs',
+      'field_name' => 'new_no_field_paragraphs',
     ];
     $this->drupalPostForm(NULL, $edit, t('Save and continue'));
     $this->drupalPostForm(NULL, [], t('Save field settings'));
@@ -165,7 +165,7 @@ class ParagraphsExperimentalConfigTest extends ParagraphsExperimentalTestBase {
   public function testIncludedParagraphTypes() {
     $this->loginAsAdmin();
     // Add a Paragraph content type and 2 Paragraphs types.
-    $this->addParagraphedContentType('paragraphed_test', 'paragraphs', 'paragraphs');
+    $this->addParagraphedContentType('paragraphed_test', 'paragraphs');
     $this->addParagraphsType('paragraph_type_test');
     $this->addParagraphsType('text');
 
@@ -212,7 +212,7 @@ class ParagraphsExperimentalConfigTest extends ParagraphsExperimentalTestBase {
   public function testExcludedParagraphTypes() {
     $this->loginAsAdmin();
     // Add a Paragraph content type and 2 Paragraphs types.
-    $this->addParagraphedContentType('paragraphed_test', 'paragraphs', 'paragraphs');
+    $this->addParagraphedContentType('paragraphed_test', 'paragraphs');
     $this->addParagraphsType('paragraph_type_test');
     $this->addParagraphsType('text');
 
diff --git a/src/Tests/Experimental/ParagraphsExperimentalContactTest.php b/src/Tests/Experimental/ParagraphsExperimentalContactTest.php
index dffccea..30133c9 100644
--- a/src/Tests/Experimental/ParagraphsExperimentalContactTest.php
+++ b/src/Tests/Experimental/ParagraphsExperimentalContactTest.php
@@ -36,7 +36,7 @@ class ParagraphsExperimentalContactTest extends ParagraphsExperimentalTestBase {
     $contact_form = ContactForm::create(['id' => 'test_contact_form']);
     $contact_form->save();
     // Add a paragraphs field to the contact form.
-    $this->addParagraphsField($contact_form->id(), 'paragraphs', 'contact_message', 'paragraphs');
+    $this->addParagraphsField($contact_form->id(), 'paragraphs', 'contact_message');
     // Add a paragraph to the contact form.
     $this->drupalGet('contact/test_contact_form');
     $this->drupalPostAjaxForm(NULL, [], 'paragraphs_paragraphs_contact_add_more');
diff --git a/src/Tests/Experimental/ParagraphsExperimentalDuplicateFeatureTest.php b/src/Tests/Experimental/ParagraphsExperimentalDuplicateFeatureTest.php
index 23f3d32..d328fcb 100644
--- a/src/Tests/Experimental/ParagraphsExperimentalDuplicateFeatureTest.php
+++ b/src/Tests/Experimental/ParagraphsExperimentalDuplicateFeatureTest.php
@@ -22,7 +22,7 @@ class ParagraphsExperimentalDuplicateFeatureTest extends ParagraphsExperimentalT
    * Tests duplicate paragraph feature.
    */
   public function testDuplicateButton() {
-    $this->addParagraphedContentType('paragraphed_test', 'field_paragraphs', 'paragraphs');
+    $this->addParagraphedContentType('paragraphed_test');
 
     $this->loginAsAdmin(['create paragraphed_test content', 'edit any paragraphed_test content']);
     // Add a Paragraph type.
@@ -61,7 +61,7 @@ class ParagraphsExperimentalDuplicateFeatureTest extends ParagraphsExperimentalT
    * Tests duplicate paragraph feature with nested paragraphs.
    */
   public function testDuplicateButtonWithNesting() {
-    $this->addParagraphedContentType('paragraphed_test', 'field_paragraphs', 'paragraphs');
+    $this->addParagraphedContentType('paragraphed_test');
 
     $this->loginAsAdmin(['create paragraphed_test content', 'edit any paragraphed_test content']);
     // Add nested Paragraph type.
diff --git a/src/Tests/Experimental/ParagraphsExperimentalEditModesTest.php b/src/Tests/Experimental/ParagraphsExperimentalEditModesTest.php
index a07ea8e..ca99a31 100644
--- a/src/Tests/Experimental/ParagraphsExperimentalEditModesTest.php
+++ b/src/Tests/Experimental/ParagraphsExperimentalEditModesTest.php
@@ -26,7 +26,7 @@ class ParagraphsExperimentalEditModesTest extends ParagraphsExperimentalTestBase
    * Tests the collapsed summary of paragraphs.
    */
   public function testCollapsedSummary() {
-    $this->addParagraphedContentType('paragraphed_test', 'field_paragraphs', 'paragraphs');
+    $this->addParagraphedContentType('paragraphed_test');
     $this->loginAsAdmin(['create paragraphed_test content', 'edit any paragraphed_test content']);
 
     // Add a Paragraph type.
diff --git a/src/Tests/Experimental/ParagraphsExperimentalFieldGroupTest.php b/src/Tests/Experimental/ParagraphsExperimentalFieldGroupTest.php
index b19a9aa..7f702b4 100644
--- a/src/Tests/Experimental/ParagraphsExperimentalFieldGroupTest.php
+++ b/src/Tests/Experimental/ParagraphsExperimentalFieldGroupTest.php
@@ -29,7 +29,7 @@ class ParagraphsExperimentalFieldGroupTest extends ParagraphsExperimentalTestBas
     $content_type = 'paragraphed_test';
 
     // Add a Paragraphed test content type.
-    $this->addParagraphedContentType($content_type, 'field_paragraphs', 'paragraphs');
+    $this->addParagraphedContentType($content_type);
 
     $this->addParagraphsType($paragraph_type);
     $this->addParagraphsType('text');
diff --git a/src/Tests/Experimental/ParagraphsExperimentalInlineEntityFormTest.php b/src/Tests/Experimental/ParagraphsExperimentalInlineEntityFormTest.php
index e6a9212..d0fa548 100644
--- a/src/Tests/Experimental/ParagraphsExperimentalInlineEntityFormTest.php
+++ b/src/Tests/Experimental/ParagraphsExperimentalInlineEntityFormTest.php
@@ -23,7 +23,7 @@ class ParagraphsExperimentalInlineEntityFormTest extends ParagraphsExperimentalT
    */
   public function testParagraphsIEFPreview() {
     // Create article content type with a paragraphs field.
-    $this->addParagraphedContentType('article', 'field_paragraphs', 'paragraphs');
+    $this->addParagraphedContentType('article');
     $this->loginAsAdmin(['create article content', 'edit any article content']);
 
     // Create the paragraphs type simple.
@@ -74,7 +74,7 @@ class ParagraphsExperimentalInlineEntityFormTest extends ParagraphsExperimentalT
    */
   public function testParagraphsIEFChangeOrder() {
     // Create article content type with a paragraphs field.
-    $this->addParagraphedContentType('article', 'field_paragraphs', 'paragraphs');
+    $this->addParagraphedContentType('article');
     $this->loginAsAdmin(['create article content', 'edit any article content']);
 
     // Create the paragraphs type simple.
diff --git a/src/Tests/Experimental/ParagraphsExperimentalPreviewTest.php b/src/Tests/Experimental/ParagraphsExperimentalPreviewTest.php
index b34d1ce..393449c 100644
--- a/src/Tests/Experimental/ParagraphsExperimentalPreviewTest.php
+++ b/src/Tests/Experimental/ParagraphsExperimentalPreviewTest.php
@@ -28,7 +28,7 @@ class ParagraphsExperimentalPreviewTest extends ParagraphsExperimentalTestBase {
    */
   public function testParagraphsPreview() {
     // Create paragraph type Headline + Block.
-    $this->addParagraphedContentType('article', 'field_paragraphs', 'paragraphs');
+    $this->addParagraphedContentType('article');
     $this->loginAsAdmin([
       'administer node display',
       'create article content',
diff --git a/src/Tests/Experimental/ParagraphsExperimentalSummaryFormatterTest.php b/src/Tests/Experimental/ParagraphsExperimentalSummaryFormatterTest.php
index 26d0d40..ab79c0c 100644
--- a/src/Tests/Experimental/ParagraphsExperimentalSummaryFormatterTest.php
+++ b/src/Tests/Experimental/ParagraphsExperimentalSummaryFormatterTest.php
@@ -26,7 +26,7 @@ class ParagraphsExperimentalSummaryFormatterTest extends ParagraphsExperimentalT
    * Tests the paragraphs summary formatter.
    */
   public function testParagraphsSummaryFormatter() {
-    $this->addParagraphedContentType('paragraphed_test', 'field_paragraphs', 'paragraphs');
+    $this->addParagraphedContentType('paragraphed_test');
     $this->loginAsAdmin(['create paragraphed_test content', 'edit any paragraphed_test content', 'administer node display']);
 
     // Add a Paragraph type.
diff --git a/src/Tests/Experimental/ParagraphsExperimentalTypesTest.php b/src/Tests/Experimental/ParagraphsExperimentalTypesTest.php
index 919bed8..0ccd1f3 100644
--- a/src/Tests/Experimental/ParagraphsExperimentalTypesTest.php
+++ b/src/Tests/Experimental/ParagraphsExperimentalTypesTest.php
@@ -15,7 +15,7 @@ class ParagraphsExperimentalTypesTest extends ParagraphsExperimentalTestBase {
   public function testRemoveTypesWithContent() {
     $this->loginAsAdmin();
     // Add a Paragraphed test content.
-    $this->addParagraphedContentType('paragraphed_test', 'paragraphs', 'paragraphs');
+    $this->addParagraphedContentType('paragraphed_test', 'paragraphs');
 
     $this->addParagraphsType('paragraph_type_test');
     $this->addParagraphsType('text');
diff --git a/src/Tests/Experimental/ParagraphsExperimentalWidgetButtonsTest.php b/src/Tests/Experimental/ParagraphsExperimentalWidgetButtonsTest.php
index 627772c..8eedddc 100644
--- a/src/Tests/Experimental/ParagraphsExperimentalWidgetButtonsTest.php
+++ b/src/Tests/Experimental/ParagraphsExperimentalWidgetButtonsTest.php
@@ -26,7 +26,7 @@ class ParagraphsExperimentalWidgetButtonsTest extends ParagraphsExperimentalTest
    * Tests the widget buttons of paragraphs.
    */
   public function testWidgetButtons() {
-    $this->addParagraphedContentType('paragraphed_test', 'field_paragraphs', 'paragraphs');
+    $this->addParagraphedContentType('paragraphed_test');
 
     $this->loginAsAdmin(['create paragraphed_test content', 'edit any paragraphed_test content']);
     // Add a Paragraph type.
@@ -107,7 +107,7 @@ class ParagraphsExperimentalWidgetButtonsTest extends ParagraphsExperimentalTest
    * Tests if buttons are present for each widget mode.
    */
   public function testButtonsVisibility() {
-    $this->addParagraphedContentType('paragraphed_test', 'field_paragraphs', 'paragraphs');
+    $this->addParagraphedContentType('paragraphed_test');
 
     $this->loginAsAdmin(['create paragraphed_test content', 'edit any paragraphed_test content']);
     // Add a Paragraph type.
diff --git a/tests/src/FunctionalJavascript/ParagraphsTestBaseTrait.php b/tests/src/FunctionalJavascript/ParagraphsTestBaseTrait.php
index c799286..15efc8c 100644
--- a/tests/src/FunctionalJavascript/ParagraphsTestBaseTrait.php
+++ b/tests/src/FunctionalJavascript/ParagraphsTestBaseTrait.php
@@ -26,7 +26,7 @@ trait ParagraphsTestBaseTrait {
    *   'paragraphs' for experimental widget and 'entity_reference_paragraphs'
    *   for classic widget.
    */
-  protected function addParagraphedContentType($content_type_name, $paragraphs_field_name, $widget_type) {
+  protected function addParagraphedContentType($content_type_name, $paragraphs_field_name = 'field_paragraphs', $widget_type = 'paragraphs') {
     // Create the content type.
     $node_type = NodeType::create([
       'type' => $content_type_name,
@@ -51,7 +51,7 @@ trait ParagraphsTestBaseTrait {
    *   'paragraphs' for experimental widget and 'entity_reference_paragraphs'
    *   for classic widget.
    */
-  protected function addParagraphsField($entity_type_name, $paragraphs_field_name, $entity_type, $widget_type) {
+  protected function addParagraphsField($entity_type_name, $paragraphs_field_name, $entity_type, $widget_type = 'paragraphs') {
     $field_storage = FieldStorageConfig::loadByName($entity_type, $paragraphs_field_name);
     if (!$field_storage) {
       // Add a paragraphs field.
diff --git a/tests/src/Kernel/ParagraphsCollapsedSummaryTest.php b/tests/src/Kernel/ParagraphsCollapsedSummaryTest.php
index e22033f..0b6bb74 100644
--- a/tests/src/Kernel/ParagraphsCollapsedSummaryTest.php
+++ b/tests/src/Kernel/ParagraphsCollapsedSummaryTest.php
@@ -163,18 +163,4 @@ class ParagraphsCollapsedSummaryTest extends KernelTestBase {
     ]);
     $field->save();
   }
-
-  /**
-   * Adds a Paragraphs type.
-   *
-   * @param string $paragraphs_type_name
-   *   Paragraph type name used to create.
-   */
-  protected function addParagraphsType($paragraphs_type_name) {
-    $paragraphs_type = ParagraphsType::create([
-      'id' => $paragraphs_type_name,
-      'label' => $paragraphs_type_name,
-    ]);
-    $paragraphs_type->save();
-  }
 }
