summaryrefslogtreecommitdiff
path: root/spec/ruby/core/process/times_spec.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-23 03:45:55 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-23 03:45:55 +0000
commit26741c97f4940b16fe1d8450c2ba272bf09804a7 (patch)
tree00d89388b83c06e7feb6aa2a7c803534cede705a /spec/ruby/core/process/times_spec.rb
parent96db72ce38b27799dd8e80ca00696e41234db6ba (diff)
Use Process::Tms
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62545 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec/ruby/core/process/times_spec.rb')
-rw-r--r--spec/ruby/core/process/times_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/process/times_spec.rb b/spec/ruby/core/process/times_spec.rb
index 01a5595ef9..c381c93418 100644
--- a/spec/ruby/core/process/times_spec.rb
+++ b/spec/ruby/core/process/times_spec.rb
@@ -1,8 +1,8 @@
require File.expand_path('../../../spec_helper', __FILE__)
describe "Process.times" do
- it "returns a Struct::Tms" do
- Process.times.should be_kind_of(Struct::Tms)
+ it "returns a Process::Tms" do
+ Process.times.should be_kind_of(Process::Tms)
end
it "returns current cpu times" do