Commit e6f1eef47858e21dad9526a45586c609f8dea5e8

Authored by Dmitriy Zaporozhets
1 parent 4f9669cd

Fix group tests

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
features/steps/group/group.rb
... ... @@ -38,22 +38,22 @@ class Groups &lt; Spinach::FeatureSteps
38 38 end
39 39  
40 40 Then 'I should see user "John Doe" in team list' do
41   - projects_with_access = find(".ui-box .well-list")
  41 + projects_with_access = find(".panel .well-list")
42 42 projects_with_access.should have_content("John Doe")
43 43 end
44 44  
45 45 Then 'I should not see user "John Doe" in team list' do
46   - projects_with_access = find(".ui-box .well-list")
  46 + projects_with_access = find(".panel .well-list")
47 47 projects_with_access.should_not have_content("John Doe")
48 48 end
49 49  
50 50 Then 'I should see user "Mary Jane" in team list' do
51   - projects_with_access = find(".ui-box .well-list")
  51 + projects_with_access = find(".panel .well-list")
52 52 projects_with_access.should have_content("Mary Jane")
53 53 end
54 54  
55 55 Then 'I should not see user "Mary Jane" in team list' do
56   - projects_with_access = find(".ui-box .well-list")
  56 + projects_with_access = find(".panel .well-list")
57 57 projects_with_access.should_not have_content("Mary Jane")
58 58 end
59 59  
... ...