spec/extensions/string_spec.rb in ronin-support-0.2.0.rc1 vs spec/extensions/string_spec.rb in ronin-support-0.2.0.rc2
- old
+ new
@@ -165,13 +165,13 @@
it "should dump strings containing control characters" do
"hello\n\b\a".dump.should == '"hello\n\b\a"'
end
it "should dump strings containing non-printable characters" do
- "hello\x90\x05\xef".dump.should == '"hello\x90\x05\xef"'
+ "hello\x90\x05\xEF".dump.should == '"hello\x90\x05\xEF"'
end
it "should dump the string when calling the inspect method" do
- "hello\x90\x05\xef".inspect.should == '"hello\x90\x05\xef"'
+ "hello\x90\x05\xEF".inspect.should == '"hello\x90\x05\xEF"'
end
end
end