From 873c8a14f0a12eaf47a064024184a4adfaa04dd9 Mon Sep 17 00:00:00 2001 From: Kazuhiro NISHIYAMA Date: Sat, 3 Oct 2020 03:05:21 +0900 Subject: [PATCH] Fix assert_ruby_status usage in 174ae0f5775cc7af7d197963a8f87b7d1972c268 --- test/ruby/test_method.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ruby/test_method.rb b/test/ruby/test_method.rb index fde73898a9..145b4779fd 100644 --- a/test/ruby/test_method.rb +++ b/test/ruby/test_method.rb @@ -1390,6 +1390,6 @@ class TestMethod < Test::Unit::TestCase end def test_invalidating_CC_ASAN - assert_ruby_status('using Module.new') + assert_ruby_status(['-e', 'using Module.new']) end end