Commit e8ff9ad2f255daf77faa520fbbe0072b22075851
Exists in
master
and in
4 other branches
Merge pull request #2249 from jouve/fix_possible_spec_failure
fix one of the possible causes of build failures
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
features/steps/group/group.rb
@@ -28,7 +28,7 @@ class Groups < Spinach::FeatureSteps | @@ -28,7 +28,7 @@ class Groups < Spinach::FeatureSteps | ||
28 | 28 | ||
29 | Then 'I should see merge requests from this group assigned to me' do | 29 | Then 'I should see merge requests from this group assigned to me' do |
30 | assigned_to_me(:merge_requests).each do |issue| | 30 | assigned_to_me(:merge_requests).each do |issue| |
31 | - page.should have_content issue.title | 31 | + page.should have_content issue.title[0..80] |
32 | end | 32 | end |
33 | end | 33 | end |
34 | 34 |