Commit 51f9c05fb75611d858005c8059be2b2b65d1e0d9
1 parent
dd2847f5
Exists in
master
and in
4 other branches
Fix Api session spec
Showing
1 changed file
with
0 additions
and
1 deletions
Show diff stats
spec/requests/api/session_spec.rb
... | ... | @@ -14,7 +14,6 @@ describe API::API do |
14 | 14 | json_response['email'].should == user.email |
15 | 15 | json_response['private_token'].should == user.private_token |
16 | 16 | json_response['is_admin'].should == user.is_admin? |
17 | - json_response['can_create_team'].should == user.can_create_team? | |
18 | 17 | json_response['can_create_project'].should == user.can_create_project? |
19 | 18 | json_response['can_create_group'].should == user.can_create_group? |
20 | 19 | end | ... | ... |