diff options
author | Mark Lapierre <mlapierre@gitlab.com> | 2019-08-22 16:42:53 +1000 |
---|---|---|
committer | Mark Lapierre <mlapierre@gitlab.com> | 2019-08-22 16:42:53 +1000 |
commit | 095768be4fd5aad0f46d7e57c3c97ab347277253 (patch) | |
tree | 645590a6b3ef6667ab008bb8d919f061b88e9177 /qa | |
parent | 48feb671083f3bc35789e975cc30bfc020f9a5dd (diff) | |
download | gitlab-ce-095768be4fd5aad0f46d7e57c3c97ab347277253.tar.gz |
Fix failing testqa-ml-fix-view-commit-patch-test
Optionally check for quotes and escape the name
Diffstat (limited to 'qa')
-rw-r--r-- | qa/qa/specs/features/browser_ui/3_create/repository/user_views_commit_diff_patch_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/qa/specs/features/browser_ui/3_create/repository/user_views_commit_diff_patch_spec.rb b/qa/qa/specs/features/browser_ui/3_create/repository/user_views_commit_diff_patch_spec.rb index f915d412bf3..21785ca3ed3 100644 --- a/qa/qa/specs/features/browser_ui/3_create/repository/user_views_commit_diff_patch_spec.rb +++ b/qa/qa/specs/features/browser_ui/3_create/repository/user_views_commit_diff_patch_spec.rb @@ -49,7 +49,7 @@ module QA Page::Project::Commit::Show.perform(&:select_email_patches) - expect(page).to have_content("From: #{@user.name} <#{@user.public_email}>") + expect(page).to have_content(/From: "?#{Regexp.escape(@user.name)}"? <#{@user.public_email}>/) expect(page).to have_content('Subject: [PATCH] Add second file') expect(page).to have_content('diff --git a/second b/second') end |