diff options
author | Sam Rose <sam@gitlab.com> | 2016-12-20 17:58:04 -0500 |
---|---|---|
committer | Sam Rose <sam@gitlab.com> | 2016-12-27 11:23:20 -0500 |
commit | dca0a42a95d4757f6caeb1fc8866c7ebc570744b (patch) | |
tree | 86bdf6e30b9cc3fb9bde2c69729d295d577c8fba /spec | |
parent | 580220c6ccf2b541e46c4c8a1b3830195c3b5a8b (diff) | |
download | gitlab-ce-dca0a42a95d4757f6caeb1fc8866c7ebc570744b.tar.gz |
Truncate tag description and fix mobile for inidividual tag1659-long-tag-title
Diffstat (limited to 'spec')
-rw-r--r-- | spec/features/tags/master_creates_tag_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/tags/master_creates_tag_spec.rb b/spec/features/tags/master_creates_tag_spec.rb index 08a97085a9c..ca25c696f75 100644 --- a/spec/features/tags/master_creates_tag_spec.rb +++ b/spec/features/tags/master_creates_tag_spec.rb @@ -34,7 +34,7 @@ feature 'Master creates tag', feature: true do expect(current_path).to eq( namespace_project_tag_path(project.namespace, project, 'v3.0')) expect(page).to have_content 'v3.0' - page.within 'pre.body' do + page.within 'pre.wrap' do expect(page).to have_content "Awesome tag message\n\n- hello\n- world" end end |