Skip to content

Commit e5ca8ad

Browse files
committed
Fix arguments sequence
1 parent 2280e3f commit e5ca8ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_rdoc_parser_ruby.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2579,7 +2579,7 @@ def blah()
25792579

25802580
blah = foo.method_list.first
25812581
markup_code = blah.markup_code.sub(/^.*\n/, '')
2582-
assert_equal markup_code, expected
2582+
assert_equal expected, markup_code
25832583
end
25842584

25852585
def test_parse_statements_postfix_if_after_heredocbeg
@@ -2664,7 +2664,7 @@ def blah
26642664

26652665
blah = foo.method_list.first
26662666
markup_comment = blah.search_record[6]
2667-
assert_equal markup_comment, expected
2667+
assert_equal expected, markup_comment
26682668
end
26692669

26702670
def test_parse_require_dynamic_string

0 commit comments

Comments
 (0)