summaryrefslogtreecommitdiff
path: root/spec/ruby/core/time/shared/gmtime.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/time/shared/gmtime.rb')
-rw-r--r--spec/ruby/core/time/shared/gmtime.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/time/shared/gmtime.rb b/spec/ruby/core/time/shared/gmtime.rb
index 5ed64c2ab6..bae19da462 100644
--- a/spec/ruby/core/time/shared/gmtime.rb
+++ b/spec/ruby/core/time/shared/gmtime.rb
@@ -22,11 +22,11 @@ describe :time_gmtime, shared: true do
time.send(@method).should equal(time)
end
- it "raises a RuntimeError if the time is not UTC" do
+ it "raises a FrozenError if the time is not UTC" do
with_timezone("CST", -6) do
time = Time.now
time.freeze
- -> { time.send(@method) }.should raise_error(RuntimeError)
+ -> { time.send(@method) }.should raise_error(FrozenError)
end
end
end