diff options
author | Phil Hughes <me@iamphill.com> | 2017-09-06 11:55:23 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2017-09-06 11:55:23 +0100 |
commit | de82bd8e447ae7b4b7e66f0368f5f43311848186 (patch) | |
tree | 19e49f95e95d12f995176b33a84ff894e6ccfc19 /features | |
parent | 68e9372acd2285055df70cdf84665febfb496166 (diff) | |
download | gitlab-ce-de82bd8e447ae7b4b7e66f0368f5f43311848186.tar.gz |
fixed up JS to use a js-* class
fixed up Ruby based on review
Diffstat (limited to 'features')
-rw-r--r-- | features/steps/explore/projects.rb | 4 | ||||
-rw-r--r-- | features/steps/project/redirects.rb | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/features/steps/explore/projects.rb b/features/steps/explore/projects.rb index 90d0ff47ce7..962e39dde9a 100644 --- a/features/steps/explore/projects.rb +++ b/features/steps/explore/projects.rb @@ -36,13 +36,13 @@ class Spinach::Features::ExploreProjects < Spinach::FeatureSteps end step 'I should see project "Community" home page' do - page.within '.breadcrumbs .breadcrumb-item-project-name' do + page.within '.breadcrumbs .breadcrumb-item-text' do expect(page).to have_content 'Community' end end step 'I should see project "Internal" home page' do - page.within '.breadcrumbs .breadcrumb-item-project-name' do + page.within '.breadcrumbs .breadcrumb-item-text' do expect(page).to have_content 'Internal' end end diff --git a/features/steps/project/redirects.rb b/features/steps/project/redirects.rb index ff9331b93fa..9ce86ca45d0 100644 --- a/features/steps/project/redirects.rb +++ b/features/steps/project/redirects.rb @@ -18,7 +18,7 @@ class Spinach::Features::ProjectRedirects < Spinach::FeatureSteps step 'I should see project "Community" home page' do Gitlab.config.gitlab.should_receive(:host).and_return("www.example.com") - page.within '.breadcrumbs .breadcrumb-item-project-name' do + page.within '.breadcrumbs .breadcrumb-item-text' do expect(page).to have_content 'Community' end end |