diff options
author | Andrew Newdigate <andrew@gitlab.com> | 2017-08-24 09:20:04 +0000 |
---|---|---|
committer | Sean McGivern <sean@mcgivern.me.uk> | 2017-08-24 09:20:04 +0000 |
commit | fb49c94e49149a2043b774ba33daa3fe79febdd4 (patch) | |
tree | e0f1fd8d5b716baec66287116d0b1529cfdca0bb /spec/features/dashboard | |
parent | 7ab4efa8f8c1c1c0b80684d13bfbb777485f1199 (diff) | |
download | gitlab-ce-fb49c94e49149a2043b774ba33daa3fe79febdd4.tar.gz |
Delegate Repository::branch_exists? and ref_exists? to Gitlab::Git
Diffstat (limited to 'spec/features/dashboard')
-rw-r--r-- | spec/features/dashboard/activity_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/dashboard/activity_spec.rb b/spec/features/dashboard/activity_spec.rb index 582868bac1e..bd115785646 100644 --- a/spec/features/dashboard/activity_spec.rb +++ b/spec/features/dashboard/activity_spec.rb @@ -17,7 +17,7 @@ feature 'Dashboard > Activity' do end context 'event filters', :js do - let(:project) { create(:project) } + let(:project) { create(:project, :repository) } let(:merge_request) do create(:merge_request, author: user, source_project: project, target_project: project) |