We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef3a128 commit 07580daCopy full SHA for 07580da
test/logger/test_logdevice.rb
@@ -437,7 +437,9 @@ def test_shifting_size_not_rotate_too_much
437
logdev1.write(message)
438
assert_file.identical?(log, logdev1.dev)
439
# NOTE: below assertion fails in JRuby 9.3 and TruffleRuby
440
- assert_file.identical?(log + ".0", logdev2.dev)
+ unless %w[jruby truffleruby].include? RUBY_ENGINE
441
+ assert_file.identical?(log + ".0", logdev2.dev)
442
+ end
443
444
logdev2.write(message)
445
0 commit comments