From b865e1fe656ae3babb24bc6f93c5073f0834c9c6 Mon Sep 17 00:00:00 2001 From: "kunal.sachdev" <kunal.sachdev@3685163.no-reply.drupal.org> Date: Fri, 17 Sep 2021 12:38:54 +0000 Subject: [PATCH] Issue #3233521 by kunal.sachdev: Remove unnecessary call to checkForUpdates() in testTableLooksCorrect() in UpdaterFormTest --- tests/src/Functional/UpdaterFormTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/src/Functional/UpdaterFormTest.php b/tests/src/Functional/UpdaterFormTest.php index f356041b48..a28216cc80 100644 --- a/tests/src/Functional/UpdaterFormTest.php +++ b/tests/src/Functional/UpdaterFormTest.php @@ -73,7 +73,7 @@ class UpdaterFormTest extends BrowserTestBase { $this->setCoreVersion('9.8.1'); $this->drupalLogin($this->rootUser); - $this->checkForUpdates(); + $this->drupalGet('/admin/modules/automatic-update'); $assert_session = $this->assertSession(); @@ -91,7 +91,7 @@ class UpdaterFormTest extends BrowserTestBase { $this->setCoreVersion('9.8.0'); $this->drupalLogin($this->rootUser); - $this->checkForUpdates(); + // Navigate to the automatic updates form. $this->drupalGet('/admin'); // @todo Add test coverage of accessing the form via the other path in -- GitLab