Commit 83aa0fb5 authored by Fabio Pitino's avatar Fabio Pitino

Replace _ with - in section class names

parent e2daebdc
...@@ -231,10 +231,10 @@ describe Gitlab::Ci::Ansi2html do ...@@ -231,10 +231,10 @@ describe Gitlab::Ci::Ansi2html do
it 'prints light red' do it 'prints light red' do
text = "#{section_start}\e[91mHello\e[0m\n#{section_end}" text = "#{section_start}\e[91mHello\e[0m\n#{section_end}"
header = %{<span class="term-fg-l-red section js-section-header js-s_#{class_name(section_name)}">Hello</span>} header = %{<span class="term-fg-l-red section js-section-header js-s-#{class_name(section_name)}">Hello</span>}
line_break = %{<span class="section js-section-header js-s_#{class_name(section_name)}"><br/></span>} line_break = %{<span class="section js-section-header js-s-#{class_name(section_name)}"><br/></span>}
line = %{<span class="section s_#{class_name(section_name)} line"></span>} line = %{<span class="section s_#{class_name(section_name)} line"></span>}
empty_line = %{<span class="section js-s_#{class_name(section_name)}"></span>} empty_line = %{<span class="section js-s-#{class_name(section_name)}"></span>}
html = "#{section_start_html}#{header}#{line_break}#{line}#{empty_line}#{section_end_html}" html = "#{section_start_html}#{header}#{line_break}#{line}#{empty_line}#{section_end_html}"
expect(convert_html(text)).to eq(html) expect(convert_html(text)).to eq(html)
......
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