diff options
author | Sullivan SENECHAL <soullivaneuh@gmail.com> | 2014-10-02 00:21:29 +0200 |
---|---|---|
committer | Sullivan SENECHAL <soullivaneuh@gmail.com> | 2014-10-03 12:19:24 +0200 |
commit | 5d8be4438add1183d91e030b852c628cf09f4916 (patch) | |
tree | fc06a25a526de719d3bc9c7ba5d4ebb4fe69a828 /features | |
parent | 0cc30145f441a16ce513bba942ea67ede4086a7f (diff) | |
download | gitlab-ce-5d8be4438add1183d91e030b852c628cf09f4916.tar.gz |
Upgrade to Font Awesome v4.2
Diffstat (limited to 'features')
-rw-r--r-- | features/steps/profile/group.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/features/steps/profile/group.rb b/features/steps/profile/group.rb index 81d5bc15e21..0a10e04e219 100644 --- a/features/steps/profile/group.rb +++ b/features/steps/profile/group.rb @@ -7,22 +7,22 @@ class Spinach::Features::ProfileGroup < Spinach::FeatureSteps # Leave step 'I click on the "Leave" button for group "Owned"' do - find(:css, 'li', text: "Owner").find(:css, 'i.icon-signout').click + find(:css, 'li', text: "Owner").find(:css, 'i.fa.fa-sign-out').click # poltergeist always confirms popups. end step 'I click on the "Leave" button for group "Guest"' do - find(:css, 'li', text: "Guest").find(:css, 'i.icon-signout').click + find(:css, 'li', text: "Guest").find(:css, 'i.fa.fa-sign-out').click # poltergeist always confirms popups. end step 'I should not see the "Leave" button for group "Owned"' do - find(:css, 'li', text: "Owner").should_not have_selector(:css, 'i.icon-signout') + find(:css, 'li', text: "Owner").should_not have_selector(:css, 'i.fa.fa-sign-out') # poltergeist always confirms popups. end step 'I should not see the "Leave" button for groupr "Guest"' do - find(:css, 'li', text: "Guest").should_not have_selector(:css, 'i.icon-signout') + find(:css, 'li', text: "Guest").should_not have_selector(:css, 'i.fa.fa-sign-out') # poltergeist always confirms popups. end |