diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-05-29 21:30:07 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-05-29 21:30:07 +0300 |
commit | e6f1eef47858e21dad9526a45586c609f8dea5e8 (patch) | |
tree | 3a8477994908f3e96cedd7b37bb3b193edb51848 /features | |
parent | 4f9669cd9f35a72dd9c950decccbe012d1a3d957 (diff) | |
download | gitlab-ce-e6f1eef47858e21dad9526a45586c609f8dea5e8.tar.gz |
Fix group tests
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'features')
-rw-r--r-- | features/steps/group/group.rb | 8 |
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 |