diff options
Diffstat (limited to 'features/steps/user.rb')
-rw-r--r-- | features/steps/user.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/features/steps/user.rb b/features/steps/user.rb index 10cae692a88..5cbbecc7495 100644 --- a/features/steps/user.rb +++ b/features/steps/user.rb @@ -29,12 +29,12 @@ class Spinach::Features::User < Spinach::FeatureSteps step 'I should see contributed projects' do within '.contributed-projects' do - page.should have_content(@contributed_project.name) + expect(page).to have_content(@contributed_project.name) end end step 'I should see contributions calendar' do - page.should have_css('.cal-heatmap-container') + expect(page).to have_css('.cal-heatmap-container') end def contributed_project |