Skip to content

Commit b5ac483

Browse files
authored
Fix the if condition to skip test_ractor.rb correctly (ruby#13067)
Follow-up for ruby@a2b03ba
1 parent 229784d commit b5ac483

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bootstraptest/test_ractor.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1636,7 +1636,7 @@ class C
16361636
16371637
1_000.times { idle_worker, tmp_reporter = Ractor.select(*workers) }
16381638
"ok"
1639-
} if !yjit_enabled? || ENV['GITHUB_WORKFLOW'] == 'ModGC' # flaky
1639+
} if !yjit_enabled? || ENV['GITHUB_WORKFLOW'] != 'ModGC' # flaky
16401640

16411641
assert_equal "ok", %q{
16421642
def foo(*); ->{ super }; end

0 commit comments

Comments
 (0)