summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2022-02-17 19:01:33 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2022-02-17 19:04:16 +0900
commitdfe7faa6b60464c184fede59f227341f6c57cc97 (patch)
tree4fc13854e917365282ef4b460b0cef70ea1f7d98 /test
parentfdf0f8d81487560f5837dc7e3888a96f7c2b4ec9 (diff)
exclude name must be Regexp or Symbol
https://github.com/ruby/ruby/blob/fdf0f8d81487560f5837dc7e3888a96f7c2b4ec9/tool/lib/test/unit.rb#L1273-L1290
Diffstat (limited to 'test')
-rw-r--r--test/excludes/TestThread.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/excludes/TestThread.rb b/test/excludes/TestThread.rb
index b9cfc91bc2..bec354a3bd 100644
--- a/test/excludes/TestThread.rb
+++ b/test/excludes/TestThread.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: false
exclude(/_stack_size$/, 'often too expensive')
if /freebsd13/ =~ RUBY_PLATFORM
- exclude('test_signal_at_join', 'gets stuck somewhere')
+ exclude(:test_signal_at_join, 'gets stuck somewhere')
end