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
attribute :labels
attribute :title
def initialize
@labels = []
end
def fabricate!
project.visit!
......@@ -38,7 +42,7 @@ module QA
def api_post_body
{
labels: [labels],
labels: labels,
title: title
}
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