aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/array/pack/h_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/array/pack/h_spec.rb')
-rw-r--r--spec/ruby/core/array/pack/h_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/array/pack/h_spec.rb b/spec/ruby/core/array/pack/h_spec.rb
index 81fca7d989..85a875fc8b 100644
--- a/spec/ruby/core/array/pack/h_spec.rb
+++ b/spec/ruby/core/array/pack/h_spec.rb
@@ -97,7 +97,7 @@ describe "Array#pack with format 'H'" do
].should be_computed_by(:pack, "H")
end
- it "returns an BINARY string" do
+ it "returns a binary string" do
["41"].pack("H").encoding.should == Encoding::BINARY
end
end
@@ -194,7 +194,7 @@ describe "Array#pack with format 'h'" do
].should be_computed_by(:pack, "h")
end
- it "returns an BINARY string" do
+ it "returns a binary string" do
["41"].pack("h").encoding.should == Encoding::BINARY
end
end