提交 f016c780 编写于 作者: G Grzegorz Bizon

Merge branch 'qa-173' into 'master'

QA::Page::Component::Dropzone#initialize needs a QA::Page::Base object

See merge request gitlab-org/gitlab-ce!16852
......@@ -4,6 +4,8 @@ module QA
class Dropzone
attr_reader :page, :container
# page - A QA::Page::Base object
# container - CSS selector of the comment textarea's container
def initialize(page, container)
@page = page
@container = container
......
......@@ -27,7 +27,7 @@ module QA
fill_in(with: text, name: 'note[note]')
unless attachment.nil?
QA::Page::Component::Dropzone.new(page, '.new-note')
QA::Page::Component::Dropzone.new(self, '.new-note')
.attach_file(attachment)
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册