Commit 10b30708 authored by Walmyr's avatar Walmyr

Merge branch 'qa-fix-issue-resource' into 'master'

Fix failing e2e tests - initialize Issue labels

See merge request gitlab-org/gitlab-ce!30375
parents 50441577 d23a654f
...@@ -16,6 +16,10 @@ module QA ...@@ -16,6 +16,10 @@ module QA
attribute :labels attribute :labels
attribute :title attribute :title
def initialize
@labels = []
end
def fabricate! def fabricate!
project.visit! project.visit!
...@@ -38,7 +42,7 @@ module QA ...@@ -38,7 +42,7 @@ module QA
def api_post_body def api_post_body
{ {
labels: [labels], labels: labels,
title: title title: title
} }
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment