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:
Diffstat (limited to 'qa/qa/page/blame/show.rb')
-rw-r--r--qa/qa/page/blame/show.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/qa/qa/page/blame/show.rb b/qa/qa/page/blame/show.rb
index 42fb217d2df..39117efb2a5 100644
--- a/qa/qa/page/blame/show.rb
+++ b/qa/qa/page/blame/show.rb
@@ -9,7 +9,7 @@ module QA
end
view 'app/views/projects/blame/show.html.haml' do
- element :blame_file_content
+ element 'blob-content-holder'
end
def has_file?(file_name)
@@ -23,11 +23,11 @@ module QA
end
def has_file_content?(file_content)
- within_element(:blame_file_content) { has_text?(file_content) }
+ within_element('blob-content-holder') { has_text?(file_content) }
end
def has_no_file_content?(file_content)
- within_element(:blame_file_content) do
+ within_element('blob-content-holder') do
has_no_text?(file_content)
end
end