diff options
author | Jacob Schatz <jschatz1@gmail.com> | 2016-04-14 21:01:08 +0000 |
---|---|---|
committer | Jacob Schatz <jschatz1@gmail.com> | 2016-04-14 21:01:08 +0000 |
commit | ba18e0b208e7b07b2992fad984c5160e94797ba0 (patch) | |
tree | 744102e5ab517fd5ce5707e2436801f1e39fa054 /features | |
parent | 95ce4d29c31770e2caf843face3b9f57a54d91f6 (diff) | |
parent | 80d8f8b87609ffb9b0fcc1f74fbeb4520a193e07 (diff) | |
download | gitlab-ce-ba18e0b208e7b07b2992fad984c5160e94797ba0.tar.gz |
Merge branch '14176-diff-paste-data' into 'master'
Copying and pasting doesn't grab line numbers or +/-
Fixes #14176
See merge request !3687
Diffstat (limited to 'features')
-rw-r--r-- | features/steps/shared/diff_note.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/steps/shared/diff_note.rb b/features/steps/shared/diff_note.rb index 1448c3f44cc..e846c52d474 100644 --- a/features/steps/shared/diff_note.rb +++ b/features/steps/shared/diff_note.rb @@ -227,7 +227,7 @@ module SharedDiffNote end def click_diff_line(code) - find("button[data-line-code='#{code}']").click + find("button[data-line-code='#{code}']").trigger('click') end def click_parallel_diff_line(code, line_type) |