summaryrefslogtreecommitdiff
path: root/spec/ruby/core/time/round_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/time/round_spec.rb')
-rw-r--r--spec/ruby/core/time/round_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/time/round_spec.rb b/spec/ruby/core/time/round_spec.rb
index 0cbed04ade..a739cabfdf 100644
--- a/spec/ruby/core/time/round_spec.rb
+++ b/spec/ruby/core/time/round_spec.rb
@@ -20,8 +20,8 @@ describe "Time#round" do
it "returns an instance of Time, even if #round is called on a subclass" do
subclass = Class.new(Time)
instance = subclass.at(0)
- instance.class.should equal subclass
- instance.round.should be_an_instance_of(Time)
+ instance.class.should.equal? subclass
+ instance.round.should.instance_of?(Time)
end
it "copies own timezone to the returning value" do