summaryrefslogtreecommitdiff
path: root/spec/ruby/core/symbol/comparison_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/symbol/comparison_spec.rb')
-rw-r--r--spec/ruby/core/symbol/comparison_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/ruby/core/symbol/comparison_spec.rb b/spec/ruby/core/symbol/comparison_spec.rb
index 173a7da625..6d56176e97 100644
--- a/spec/ruby/core/symbol/comparison_spec.rb
+++ b/spec/ruby/core/symbol/comparison_spec.rb
@@ -37,15 +37,15 @@ end
describe "Symbol#<=>" do
it "returns nil if other is a String" do
- (:abc <=> "abc").should be_nil
+ (:abc <=> "abc").should == nil
end
- it "returns nil if other is a Fixnum" do
- (:abc <=> 1).should be_nil
+ it "returns nil if other is an Integer" do
+ (:abc <=> 1).should == nil
end
it "returns nil if other is an object" do
obj = mock("string <=>")
- (:abc <=> obj).should be_nil
+ (:abc <=> obj).should == nil
end
end