summaryrefslogtreecommitdiff
path: root/spec/ruby/core/time/gmt_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/time/gmt_spec.rb')
-rw-r--r--spec/ruby/core/time/gmt_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/time/gmt_spec.rb b/spec/ruby/core/time/gmt_spec.rb
index 7e85749d5b..840f59e0e8 100644
--- a/spec/ruby/core/time/gmt_spec.rb
+++ b/spec/ruby/core/time/gmt_spec.rb
@@ -2,7 +2,7 @@ require_relative '../../spec_helper'
describe "Time#gmt?" do
it "returns true if time represents a time in UTC (GMT)" do
- Time.now.gmt?.should == false
- Time.now.gmtime.gmt?.should == true
+ Time.now.should_not.gmt?
+ Time.now.gmtime.should.gmt?
end
end