aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/process/times_spec.rb
diff options
context:
space:
mode:
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