diff options
Diffstat (limited to 'test/ruby/test_autoload.rb')
-rw-r--r-- | test/ruby/test_autoload.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_autoload.rb b/test/ruby/test_autoload.rb index 0428e10525..3b013c12ae 100644 --- a/test/ruby/test_autoload.rb +++ b/test/ruby/test_autoload.rb @@ -304,7 +304,7 @@ p Foo::Bar begin thrs = [] 3.times do - thrs << Thread.new { AutoloadTest; nil } + thrs << Thread.new { AutoloadTest && nil } thrs << Thread.new { fork { AutoloadTest } } end thrs.each(&:join) |