Skip to content

Commit 4a6bb0a

Browse files
committed
Merge pull request jruby#175 from ryenus/x-j-js
align file name with content encoding
2 parents 8ae5b3e + 49f5965 commit 4a6bb0a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

test/JRUBY_6606/dir-j.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# encoding: Shift_JIS
1+
# encoding: EUC-JP
22

33
Dir.chdir(File.dirname __FILE__) do
4-
Dir.entries('res/‚ ‚¢').each{|n| p n unless n == '.' || n == '..'}
5-
Dir.foreach('res/‚ ‚¢') {|n| p n unless n == '.' || n == '..'}
4+
Dir.entries('res/¤¢¤¤').each{|n| p n unless n == '.' || n == '..'}
5+
Dir.foreach('res/¤¢¤¤') {|n| p n unless n == '.' || n == '..'}
66
end

test/JRUBY_6606/dir-js.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# encoding: EUC-JP
1+
# encoding: Shift_JIS
22

33
Dir.chdir(File.dirname __FILE__) do
4-
Dir.entries('res/¤¢¤¤').each{|n| p n unless n == '.' || n == '..'}
5-
Dir.foreach('res/¤¢¤¤') {|n| p n unless n == '.' || n == '..'}
4+
Dir.entries('res/‚ ‚¢').each{|n| p n unless n == '.' || n == '..'}
5+
Dir.foreach('res/‚ ‚¢') {|n| p n unless n == '.' || n == '..'}
66
end

0 commit comments

Comments
 (0)