diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-01-25 10:10:12 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-01-25 10:10:12 +0200 |
commit | 3ce79e06580c0efb0abeba0263bdc3ea10670e2d (patch) | |
tree | c83c30a4e28e4b9d838e80ec0925ae484ab4bc7f /spec/models | |
parent | ac8247b46df8eb8c475436fc276a3648379ae7a0 (diff) | |
download | gitlab-ce-3ce79e06580c0efb0abeba0263bdc3ea10670e2d.tar.gz |
fix spec
Diffstat (limited to 'spec/models')
-rw-r--r-- | spec/models/user_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb index f19c40b5fa6..2ca82edf74e 100644 --- a/spec/models/user_spec.rb +++ b/spec/models/user_spec.rb @@ -189,7 +189,7 @@ describe User do it { user.is_admin?.should be_false } it { user.require_ssh_key?.should be_true } - it { user.can_create_group?.should be_false } + it { user.can_create_group?.should be_true } it { user.can_create_project?.should be_true } it { user.first_name.should == 'John' } end |