Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / modules / contrib / video_embed_field / tests / src / Functional / WidgetTest.php
index c8da9af71c9195f90ce3c55afdea1485142da75f..798aa7579b7867d453e8527b03d4f2715b79f818 100644 (file)
@@ -39,14 +39,14 @@ class WidgetTest extends BrowserTestBase {
     $this->submitForm([
       'title[0][value]' => $node_title,
       $this->fieldName . '[0][value]' => 'Some useless value.',
-    ], t('Save and publish'));
+    ], t('Save'));
     $this->assertSession()->pageTextContains('Could not find a video provider to handle the given URL.');
 
     // Test a valid input.
     $valid_input = 'https://vimeo.com/80896303';
     $this->submitForm([
       $this->fieldName . '[0][value]' => $valid_input,
-    ], t('Save and publish'));
+    ], t('Save'));
     $this->assertSession()->pageTextContains(sprintf('%s %s has been created.', $this->contentTypeName, $node_title));
 
     // Load the saved node and assert the valid value was saved into the field.