diff --git a/src/Tests/DiffLocaleTest.php b/src/Tests/DiffLocaleTest.php
index 883a4c1..e94bdb7 100644
--- a/src/Tests/DiffLocaleTest.php
+++ b/src/Tests/DiffLocaleTest.php
@@ -69,6 +69,7 @@ class DiffLocaleTest extends WebTestBase {
     $this->clickLink(t('Add'));
     $edit = array(
       'title[0][value]' => 'French node',
+      'revision' => FALSE,
     );
     $this->drupalPostForm(NULL, $edit, t('Save and keep published (this translation)'));
     $this->rebuildContainer();
@@ -78,12 +79,10 @@ class DiffLocaleTest extends WebTestBase {
     // Create a new revision on both languages.
     $edit = array(
       'title[0][value]' => 'Updated title',
-      'revision' => TRUE,
     );
     $this->drupalPostForm('node/' . $english_node->id() . '/edit', $edit, t('Save and keep published (this translation)'));
     $edit = array(
       'title[0][value]' => 'Le titre',
-      'revision' => TRUE,
     );
     $this->drupalPostForm('fr/node/' . $english_node->id() . '/edit', $edit, t('Save and keep published (this translation)'));
 
diff --git a/src/Tests/DiffPluginTest.php b/src/Tests/DiffPluginTest.php
index c98eee9..2a638c7 100644
--- a/src/Tests/DiffPluginTest.php
+++ b/src/Tests/DiffPluginTest.php
@@ -231,15 +231,13 @@ class DiffPluginTest extends WebTestBase {
     $test_files = $this->drupalGetTestFiles('text');
     $edit['files[field_file_0]'] = drupal_realpath($test_files['0']->uri);
     $this->drupalPostForm('node/' . $node->id() . '/edit', $edit, 'Upload');
-    $edit['revision'] = TRUE;
     $this->drupalPostForm('node/' . $node->id() . '/edit', $edit, t('Save and keep published'));
 
     // Replace the file by a different one.
     $this->drupalPostForm('node/' . $node->id() . '/edit', [], 'Remove');
-    $this->drupalPostForm(NULL, [], t('Save and keep published'));
+    $this->drupalPostForm(NULL, ['revision' => FALSE], t('Save and keep published'));
     $edit['files[field_file_0]'] = drupal_realpath($test_files['1']->uri);
     $this->drupalPostForm('node/' . $node->id() . '/edit', $edit, 'Upload');
-    $edit['revision'] = TRUE;
     $this->drupalPostForm('node/' . $node->id() . '/edit', $edit, t('Save and keep published'));
 
     // Check differences between revisions.
@@ -304,18 +302,16 @@ class DiffPluginTest extends WebTestBase {
     $this->drupalPostForm('node/' . $node->id() . '/edit', $edit, t('Save and keep published'));
     $edit = [
       'field_image[0][alt]' => 'Image alt',
-      'revision' => TRUE,
     ];
     $this->drupalPostForm(NULL, $edit, t('Save and keep published'));
 
     // Replace the image by a different one.
     $this->drupalPostForm('node/' . $node->id() . '/edit', [], 'Remove');
-    $this->drupalPostForm(NULL, [], t('Save and keep published'));
+    $this->drupalPostForm(NULL, ['revision' => FALSE], t('Save and keep published'));
     $edit = ['files[field_image_0]' => drupal_realpath($test_files['1']->uri)];
     $this->drupalPostForm('node/' . $node->id() . '/edit', $edit, t('Save and keep published'));
     $edit = [
       'field_image[0][alt]' => 'Image alt updated',
-      'revision' => TRUE,
     ];
     $this->drupalPostForm(NULL, $edit, t('Save and keep published'));
 
