Skip to content

Commit

Permalink
bugfix: test: test_roundtrip_multi_byte_char: Removed unnecessary 're…
Browse files Browse the repository at this point in the history
…scue next' after #pack.
  • Loading branch information
kch committed Jan 11, 2010
1 parent d4be9ee commit 3cf7615
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test.rb
Expand Up @@ -204,7 +204,7 @@ def test_roundtrip_multi_byte_char
0x10ffff,
].each {|ucs_code|
[-1,0,1].each {|ofs|
(c = [ucs_code + ofs].pack('U')) rescue next
(c = [ucs_code + ofs].pack('U'))
c_hex = c.unpack('H8')
y = c.ya2yaml(
:escape_b_specific => true,
Expand Down

0 comments on commit 3cf7615

Please sign in to comment.