diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-09-14 22:01:31 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-09-14 22:01:31 +0300 |
commit | e0e88cddd805a1aa5f467dcea826c24a64187df0 (patch) | |
tree | 02607cb51df3bd6cd31ec36f296754b22b851303 /spec/requests | |
parent | 90dc5ff5fdfe316b0ccd5706c7c98738c48876de (diff) | |
download | gitlab-ce-e0e88cddd805a1aa5f467dcea826c24a64187df0.tar.gz |
Fix tests
Diffstat (limited to 'spec/requests')
-rw-r--r-- | spec/requests/api/users_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/requests/api/users_spec.rb b/spec/requests/api/users_spec.rb index e42c0567ef6..2fced3ec945 100644 --- a/spec/requests/api/users_spec.rb +++ b/spec/requests/api/users_spec.rb @@ -66,7 +66,7 @@ describe API::API do }.to change { User.count }.by(1) user = User.find_by_username(attr[:username]) user.projects_limit.should == limit - user.theme_id.should == Gitlab::Theme::BASIC + user.theme_id.should == Gitlab::Theme::MARS Gitlab.config.gitlab.unstub(:default_projects_limit) end |