summaryrefslogtreecommitdiff
path: root/spec/ruby/core/struct/each_pair_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/struct/each_pair_spec.rb')
-rw-r--r--spec/ruby/core/struct/each_pair_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/struct/each_pair_spec.rb b/spec/ruby/core/struct/each_pair_spec.rb
index 1230ca9026..db146c81e9 100644
--- a/spec/ruby/core/struct/each_pair_spec.rb
+++ b/spec/ruby/core/struct/each_pair_spec.rb
@@ -21,11 +21,11 @@ describe "Struct#each_pair" do
end
it "returns self if passed a block" do
- @car.each_pair {}.should equal(@car)
+ @car.each_pair {}.should.equal?(@car)
end
it "returns an Enumerator if not passed a block" do
- @car.each_pair.should be_an_instance_of(Enumerator)
+ @car.each_pair.should.instance_of?(Enumerator)
end
it_behaves_like :struct_accessor, :each_pair