summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_file.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ruby/test_file.rb b/test/ruby/test_file.rb
index c7cfd777dc..d0f11882e5 100644
--- a/test/ruby/test_file.rb
+++ b/test/ruby/test_file.rb
@@ -329,11 +329,11 @@ class TestFile < Test::Unit::TestCase
delta = 1
stat = File.stat(path)
+ assert_in_delta tb, stat.birthtime.to_f, delta
+ assert_in_delta t0+2, stat.mtime.to_f, delta
if stat.birthtime != stat.ctime
- assert_in_delta tb, stat.birthtime.to_f, delta
+ assert_in_delta t0+4, stat.ctime.to_f, delta
end
- assert_in_delta t0+2, stat.mtime.to_f, delta
- assert_in_delta t0+4, stat.ctime.to_f, delta
assert_in_delta t0+6, stat.atime.to_f, delta
rescue NotImplementedError
end