Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2017-07-27 00:49:06 +0300
committerRobert Speicher <rspeicher@gmail.com>2017-07-27 20:12:16 +0300
commit293ad11df400a60faef7ec30dcbdd7575a0be968 (patch)
tree2cd709c438f0c715774ba078d1ca9bead985a01b /spec/features/issues/award_spec.rb
parent1a0064dceb8f9b431bd4e668b1a1973522f6c2d3 (diff)
Use `empty_project` where possible in spec/features/issues
Diffstat (limited to 'spec/features/issues/award_spec.rb')
-rw-r--r--spec/features/issues/award_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/issues/award_spec.rb b/spec/features/issues/award_spec.rb
index e95eb19f7d1..740281c1050 100644
--- a/spec/features/issues/award_spec.rb
+++ b/spec/features/issues/award_spec.rb
@@ -2,7 +2,7 @@ require 'rails_helper'
feature 'Issue awards', js: true do
let(:user) { create(:user) }
- let(:project) { create(:project, :public) }
+ let(:project) { create(:empty_project, :public) }
let(:issue) { create(:issue, project: project) }
describe 'logged in' do