Skip to content

Commit 9a3d3ef

Browse files
committed
Fix Rakefile
1 parent f8c7f6a commit 9a3d3ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ end
231231

232232
task :stdlib_test => :compile do
233233
test_files = FileList["test/stdlib/**/*_test.rb"].reject do |path|
234-
path =~ %r{Ractor} || path =~ %r{Encoding} || path =~ %r{CGI_test}
234+
path =~ %r{Ractor} || path =~ %r{Encoding} || path =~ %r{CGI-escape_test}
235235
end
236236

237237
if ENV["RANDOMIZE_STDLIB_TEST_ORDER"] == "true"
@@ -240,7 +240,7 @@ task :stdlib_test => :compile do
240240

241241
sh "#{ruby} -Ilib #{bin}/test_runner.rb #{test_files.join(' ')}"
242242
# TODO: Ractor tests need to be run in a separate process
243-
sh "#{ruby} -Ilib #{bin}/test_runner.rb test/stdlib/CGI_test.rb"
243+
sh "#{ruby} -Ilib #{bin}/test_runner.rb test/stdlib/CGI-escape_test.rb"
244244
sh "#{ruby} -Ilib #{bin}/test_runner.rb test/stdlib/Ractor_test.rb"
245245
sh "#{ruby} -Ilib #{bin}/test_runner.rb test/stdlib/Encoding_test.rb"
246246
end

0 commit comments

Comments
 (0)