Skip to content

Commit a25216c

Browse files
committed
More
1 parent b7a7a4d commit a25216c

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

test/rdoc/end_to_end/text_markup_test.rb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ def test_bold
5858
5959
= Heading containing *bold_word*.
6060
61-
Paragraph containing <tt>bold phrase</tt>.
61+
Paragraph containing <b>bold phrase</b>.
6262
6363
>>>
64-
Block quote containing <tt>bold phrase</tt>.
64+
Block quote containing <b>bold phrase</b>.
6565
66-
- List item containing <tt>bold phrase</tt>.
66+
- List item containing <b>bold phrase</b>.
6767
68-
= Heading containing <tt>bold phrase</tt>.
68+
= Heading containing <b>bold phrase</b>.
6969
7070
MARKUP
7171
Helper.run_rdoc(__method__, markup) do |html_lines|
@@ -76,7 +76,7 @@ def test_bold
7676
# Check count of bold phrases.
7777
bold_phrase_lines = Helper.select_lines(html_lines, '<strong>bold phrase</strong>')
7878
# (Five, not four, b/c the heading generates two.)
79-
assert_equal(5, bold_word_lines.size)
79+
assert_equal(5, bold_phrase_lines.size)
8080
end
8181
end
8282

0 commit comments

Comments
 (0)