Resolve #3412266 "Fix phpunit"
Merged
requested to merge issue/pathauto-3412266:3412266-fix-phpunit-pathautobulkupdatetesttestbulkupdate into 8.x-1.x
1 unresolved thread
Closes #3412266
Merge request reports
Activity
added 2 commits
181 181 ]; 182 182 $this->drupalGet('admin/config/search/path/update_bulk'); 183 183 $this->submitForm($edit, 'Update'); 184 $this->assertSession()->assertWaitOnAjaxRequest(); 184 if (version_compare(\Drupal::VERSION, '10.2', '>=')) { 185 // Wait batch finish, search for status message. 186 $this->assertNotEmpty($this->assertSession()->waitForElementVisible('css', 'div[aria-label="Status message"]')); 187 } 188 else { 189 $this->assertSession()->assertWaitOnAjaxRequest(); 190 } 185 191 $this->assertSession()->pageTextContains('Generated 2 URL aliases.'); changed this line in version 9 of the diff
Please register or sign in to reply