summaryrefslogtreecommitdiff
path: root/spec/ruby/core/dir/shared/pwd.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/dir/shared/pwd.rb')
-rw-r--r--spec/ruby/core/dir/shared/pwd.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/dir/shared/pwd.rb b/spec/ruby/core/dir/shared/pwd.rb
index 94fc2fa7fb..2a8d7fe790 100644
--- a/spec/ruby/core/dir/shared/pwd.rb
+++ b/spec/ruby/core/dir/shared/pwd.rb
@@ -37,7 +37,7 @@ describe :dir_pwd, shared: true do
it "returns a String with the filesystem encoding" do
enc = Dir.send(@method).encoding
if @fs_encoding == Encoding::US_ASCII
- [Encoding::US_ASCII, Encoding::ASCII_8BIT].should include(enc)
+ [Encoding::US_ASCII, Encoding::BINARY].should include(enc)
else
enc.should equal(@fs_encoding)
end