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:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-08-01 03:55:03 +0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-08-17 18:58:58 +0300
commitbaec3d236b239c720f2fc550bdfa22c09380f0aa (patch)
tree5d50542809525db380fbe378d6b3aeb526c41897 /spec/models/list_spec.rb
parent4b75c75018c9a3eac7a2c8b1772a10c98ea3bdc0 (diff)
Remove label_list factory
Diffstat (limited to 'spec/models/list_spec.rb')
-rw-r--r--spec/models/list_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/list_spec.rb b/spec/models/list_spec.rb
index 45c07a679cb..2dca15cef9c 100644
--- a/spec/models/list_spec.rb
+++ b/spec/models/list_spec.rb
@@ -34,7 +34,7 @@ describe List do
describe '#destroy' do
it 'can be destroyed when when list_type is set to label' do
- subject = create(:label_list)
+ subject = create(:list)
expect(subject.destroy).to be_truthy
end