summaryrefslogtreecommitdiff
path: root/features
diff options
context:
space:
mode:
authorSullivan SENECHAL <soullivaneuh@gmail.com>2014-10-02 00:21:29 +0200
committerSullivan SENECHAL <soullivaneuh@gmail.com>2014-10-03 12:19:24 +0200
commit5d8be4438add1183d91e030b852c628cf09f4916 (patch)
treefc06a25a526de719d3bc9c7ba5d4ebb4fe69a828 /features
parent0cc30145f441a16ce513bba942ea67ede4086a7f (diff)
downloadgitlab-ce-5d8be4438add1183d91e030b852c628cf09f4916.tar.gz
Upgrade to Font Awesome v4.2
Diffstat (limited to 'features')
-rw-r--r--features/steps/profile/group.rb8
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