diff --git a/core/modules/system/src/Form/CronForm.php b/core/modules/system/src/Form/CronForm.php
index 3d66a14d02b780c8993c764b4ce84b2dc63e5dde..63c6e8ff8204c4db25ff53b2f3a8e1fad08dbdcb 100644
--- a/core/modules/system/src/Form/CronForm.php
+++ b/core/modules/system/src/Form/CronForm.php
@@ -133,7 +133,6 @@ public function submitForm(array &$form, FormStateInterface $form_state) {
       drupal_set_message(t('Cron run failed.'), 'error');
     }
 
-    return new RedirectResponse($this->url('system.cron_settings', array(), array('absolute' => TRUE)));
   }
 
 }
diff --git a/core/modules/system/src/Tests/System/CronRunTest.php b/core/modules/system/src/Tests/System/CronRunTest.php
index e39e919189bbac06fc50b81e1f1b13d1e5df24f1..21deee3db9157de016980239419f868b3b85dab2 100644
--- a/core/modules/system/src/Tests/System/CronRunTest.php
+++ b/core/modules/system/src/Tests/System/CronRunTest.php
@@ -109,6 +109,10 @@ function testCronUI() {
     // fail randomly. Look for the word 'years', because without a timestamp,
     // the time will start at 1 January 1970.
     $this->assertNoText('years');
+
+    $this->drupalPostForm(NULL, [], t('Save configuration'));
+    $this->assertText(t('The configuration options have been saved.'));
+    $this->assertUrl('admin/config/system/cron');
   }
 
   /**