Skip to content

Commit dec804f

Browse files
committed
Fix test what has a keyword argument
1 parent 3a28640 commit dec804f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/test_rdoc_ruby_lex.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,8 +389,7 @@ def test_class_tokenize_symbol
389389
expected = [
390390
@TK::TkIDENTIFIER.new( 0, 1, 0, 'scope'),
391391
@TK::TkSPACE .new( 5, 1, 5, ' '),
392-
@TK::TkIDENTIFIER.new( 6, 1, 6, 'module'),
393-
@TK::TkCOLON .new(12, 1, 12, ':'),
392+
@TK::TkSYMBOL .new( 6, 1, 6, 'module:'),
394393
@TK::TkSPACE .new(13, 1, 13, ' '),
395394
@TK::TkSYMBOL .new(14, 1, 14, ':v1'),
396395
@TK::TkNL .new(17, 1, 17, "\n"),

0 commit comments

Comments
 (0)