Skip to content

Commit f70bf78

Browse files
committed
Fixed wrong condition to avoid flaky ractor_test.rb
1 parent be5dea9 commit f70bf78

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)