summaryrefslogtreecommitdiff
path: root/spec/ruby/core/string
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/string')
-rw-r--r--spec/ruby/core/string/b_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/string/b_spec.rb b/spec/ruby/core/string/b_spec.rb
index 8555dd8dc7..b43cb5393a 100644
--- a/spec/ruby/core/string/b_spec.rb
+++ b/spec/ruby/core/string/b_spec.rb
@@ -2,7 +2,7 @@
require_relative '../../spec_helper'
describe "String#b" do
- it "returns an BINARY encoded string" do
+ it "returns a binary encoded string" do
"Hello".b.should == "Hello".force_encoding(Encoding::BINARY)
"こんちには".b.should == "こんちには".force_encoding(Encoding::BINARY)
end