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
path: root/qa/spec
diff options
context:
space:
mode:
authorWalmyr <walmyr@gitlab.com>2019-06-14 08:07:29 +0300
committerMark Lapierre <mlapierre@gitlab.com>2019-06-14 08:07:29 +0300
commit8769eef34069efc3ffcf138da164221458c329b3 (patch)
tree33b4df8c9c30b8b60ca96a0d710f7e6666304ed5 /qa/spec
parentf35d3a241caab4c4b926d1ad6fee64ad1bdf8625 (diff)
Backport of EE changes from MR 13763
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/13763
Diffstat (limited to 'qa/spec')
-rw-r--r--qa/spec/page/logging_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/qa/spec/page/logging_spec.rb b/qa/spec/page/logging_spec.rb
index 092c6a17c9c..0f1ed039149 100644
--- a/qa/spec/page/logging_spec.rb
+++ b/qa/spec/page/logging_spec.rb
@@ -135,9 +135,9 @@ describe QA::Support::Page::Logging do
end
it 'logs within_element' do
- expect { subject.within_element(:element) }
+ expect { subject.within_element(:element, text: nil) }
.to output(/within element :element/).to_stdout_from_any_process
- expect { subject.within_element(:element) }
+ expect { subject.within_element(:element, text: nil) }
.to output(/end within element :element/).to_stdout_from_any_process
end