diff options
author | Nick Thomas <nick@gitlab.com> | 2018-01-17 11:30:25 +0000 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2018-01-24 17:25:55 +0000 |
commit | 93ea3234dfaa43204c5f24d4010bbe5070d75c72 (patch) | |
tree | dab7e978b28b6dc79349a3e084fad36175cf55d7 /spec/models/user_spec.rb | |
parent | 5a4fb8f0d183c7dd1560c90e750a7a37141c22d4 (diff) | |
download | gitlab-ce-93ea3234dfaa43204c5f24d4010bbe5070d75c72.tar.gz |
Use the DatabaseCleaner 'deletion' strategy instead of 'truncation'
Diffstat (limited to 'spec/models/user_spec.rb')
-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 762cec9b95e..594f23718da 100644 --- a/spec/models/user_spec.rb +++ b/spec/models/user_spec.rb @@ -1569,7 +1569,7 @@ describe User do it { is_expected.to eq([private_group]) } end - describe '#authorized_projects', :truncate do + describe '#authorized_projects', :delete do context 'with a minimum access level' do it 'includes projects for which the user is an owner' do user = create(:user) |