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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-05-29 22:30:07 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-05-29 22:30:07 +0400
commite6f1eef47858e21dad9526a45586c609f8dea5e8 (patch)
tree3a8477994908f3e96cedd7b37bb3b193edb51848 /features
parent4f9669cd9f35a72dd9c950decccbe012d1a3d957 (diff)
Fix group tests
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'features')
-rw-r--r--features/steps/group/group.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/features/steps/group/group.rb b/features/steps/group/group.rb
index 5e0c71581f1..f321428592f 100644
--- a/features/steps/group/group.rb
+++ b/features/steps/group/group.rb
@@ -38,22 +38,22 @@ class Groups < Spinach::FeatureSteps
end
Then 'I should see user "John Doe" in team list' do
- projects_with_access = find(".ui-box .well-list")
+ projects_with_access = find(".panel .well-list")
projects_with_access.should have_content("John Doe")
end
Then 'I should not see user "John Doe" in team list' do
- projects_with_access = find(".ui-box .well-list")
+ projects_with_access = find(".panel .well-list")
projects_with_access.should_not have_content("John Doe")
end
Then 'I should see user "Mary Jane" in team list' do
- projects_with_access = find(".ui-box .well-list")
+ projects_with_access = find(".panel .well-list")
projects_with_access.should have_content("Mary Jane")
end
Then 'I should not see user "Mary Jane" in team list' do
- projects_with_access = find(".ui-box .well-list")
+ projects_with_access = find(".panel .well-list")
projects_with_access.should_not have_content("Mary Jane")
end