summaryrefslogtreecommitdiff
path: root/spec/ruby/core/time/shared/time_params.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/time/shared/time_params.rb')
-rw-r--r--spec/ruby/core/time/shared/time_params.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/spec/ruby/core/time/shared/time_params.rb b/spec/ruby/core/time/shared/time_params.rb
index 87b52d9f8d..120d8d3af1 100644
--- a/spec/ruby/core/time/shared/time_params.rb
+++ b/spec/ruby/core/time/shared/time_params.rb
@@ -116,10 +116,8 @@ describe :time_params, shared: true do
end
it "interprets all numerals as base 10" do
- Time.send(@method, "2000", "08", "08", "08", "08", "08").should ==
- Time.send(@method, 2000, 8, 8, 8, 8, 8)
- Time.send(@method, "2000", "09", "09", "09", "09", "09").should ==
- Time.send(@method, 2000, 9, 9, 9, 9, 9)
+ Time.send(@method, "2000", "08", "08", "08", "08", "08").should == Time.send(@method, 2000, 8, 8, 8, 8, 8)
+ Time.send(@method, "2000", "09", "09", "09", "09", "09").should == Time.send(@method, 2000, 9, 9, 9, 9, 9)
end
it "handles fractional seconds as a Float" do