diff --git a/library/set/comparison_spec.rb b/library/set/comparison_spec.rb index 57ce8fe924..b851ea3d57 100644 --- a/library/set/comparison_spec.rb +++ b/library/set/comparison_spec.rb @@ -18,12 +18,12 @@ (Set[1, 2, 3] <=> Set[1, 2]).should == +1 end - it "returns nil if set has unique elements" do + it "returns nil if the set has unique elements" do (Set[1, 2, 3] <=> Set[:a, :b, :c]).should be_nil end it "returns nil when the argument is not set-like" do - (Set[1, 2, 3] <=> false).should be_nil + (Set[] <=> false).should be_nil end end end