Skip to content

Commit d0a0835

Browse files
author
Noah Gibbs
committed
Fix a typo I *did* fix in the blog post but never committed :-(
1 parent f0b5c69 commit d0a0835

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example_runners/3_0_runner.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def csystem(cmd, err, opts = {})
4242
TESTS.each_with_index do |test, test_index|
4343
if ruby["2.7.0"] || ruby["3.0"]
4444
jit_invocation = "rvm use #{ruby} && export RRB_WITH_JIT=YES && export RUBY_RUNNER_TEST_INDEX=#{test_index} && #{test}"
45-
no_jit_invocation = "rvm use #{ruby} && export RRB_WITH_JIT=YES && export RUBY_RUNNER_TEST_INDEX=#{test_index} && #{test}"
45+
no_jit_invocation = "rvm use #{ruby} && export RRB_WITH_JIT=NO && export RUBY_RUNNER_TEST_INDEX=#{test_index} && #{test}"
4646
commands.concat([jit_invocation, no_jit_invocation] * TIMES)
4747
else
4848
invocation = "rvm use #{ruby} && export RUBY_RUNNER_TEST_INDEX=#{test_index} && #{test}"

0 commit comments

Comments
 (0)