Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2015-06-12 08:36:00 +0300
committerRobert Speicher <rspeicher@gmail.com>2015-06-12 12:12:42 +0300
commit584f8601eff79fe6e400026ba6db086002ce2cba (patch)
treeca092524666d4b7353d766512800b8992359ac2a /features/steps/user.rb
parent69bbc413fec7aa4168d9ff12df5421674db90032 (diff)
Change `within` to `page.within` in feature steps
Diffstat (limited to 'features/steps/user.rb')
-rw-r--r--features/steps/user.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/features/steps/user.rb b/features/steps/user.rb
index 5cbbecc7495..3230234cb6d 100644
--- a/features/steps/user.rb
+++ b/features/steps/user.rb
@@ -28,7 +28,7 @@ class Spinach::Features::User < Spinach::FeatureSteps
end
step 'I should see contributed projects' do
- within '.contributed-projects' do
+ page.within '.contributed-projects' do
expect(page).to have_content(@contributed_project.name)
end
end