Resolve #3395901 "Fix tests"
3 unresolved threads
3 unresolved threads
Closes #3395901
Merge request reports
Activity
added 20 commits
-
ed49a330...b3b6ba19 - 13 commits from branch
project:4.x
- 11942797 - Merge remote-tracking branch 'origin/4.x' into 3395901-fix-tests
- d77ed3ba - fix: add permission access help pages to access simplenews help
- bd72d4fa - fix: continue look for valid url, find url that does not contain ellipsis. Fix...
- 8e792138 - fix: do not pass TranslatableMarkup into submitForm
- 06cd5041 - fix: pass string value into submitForm
- 62407511 - fix: use stark as a base theme
- d3c79435 - fix: use string key
Toggle commit list-
ed49a330...b3b6ba19 - 13 commits from branch
Looks like the problem with truncating urls related to text formats: https://www.drupal.org/project/simplenews/issues/3349317
122 122 'language_configuration[content_translation]' => TRUE, 123 123 ]; 124 124 $this->drupalGet('admin/structure/types/manage/simplenews_issue'); 125 $this->submitForm($edit, 'Save content type'); 125 $this->submitForm($edit, (string) t('Save')); changed this line in version 5 of the diff
150 150 151 151 // Send newsletter. 152 152 $this->clickLink(t('Newsletter')); 153 $this->submitForm([], t('Send now')); 153 $this->submitForm([], (string) t('Send now')); changed this line in version 5 of the diff
321 321 * Extract a confirmation link from a mail body. 322 322 */ 323 323 protected function extractConfirmationLink($body, $action = 'confirm') { 324 $pattern = "@simplenews/$action/.+/.+/.{20,}@"; 324 $pattern = "@simplenews/$action/.+/.+/(?:(?!…).)*$@m"; added 1 commit
- 1ce08a8c - Resolve MR40 comments (removed t and added regex comment)
Please register or sign in to reply