Skip to content

Commit 4cf4cad

Browse files
kddnewtonmatzbot
authored andcommitted
[ruby/prism] Turn off unescape tests for Ruby >= 3.4.0
ruby/prism@f982769314
1 parent f226bc2 commit 4cf4cad

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/prism/unescape_test.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
require_relative "test_helper"
44

5-
return if RUBY_VERSION < "3.1.0" || Prism::BACKEND == :FFI
5+
return if Prism::BACKEND == :FFI
6+
return if RUBY_VERSION < "3.1.0"
7+
return if RUBY_VERSION >= "3.4.0"
68

79
module Prism
810
class UnescapeTest < TestCase

0 commit comments

Comments
 (0)