summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorKevin Newton <kddnewton@gmail.com>2024-05-30 15:21:06 -0400
committergit <svn-admin@ruby-lang.org>2024-05-30 19:36:40 +0000
commit4558abec020b786eb337f6edf4e114cae80228aa (patch)
tree17c6860ac3cd05861b0169460635881e2a20a436 /test
parent308c83567660e7612e522cca6c9ad7523f9531fa (diff)
[ruby/prism] Disallow unescape test on FFI backend
https://github.com/ruby/prism/commit/32277722d4
Diffstat (limited to 'test')
-rw-r--r--test/prism/unescape_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/prism/unescape_test.rb b/test/prism/unescape_test.rb
index 35e1952cb2..24a9e3f6bc 100644
--- a/test/prism/unescape_test.rb
+++ b/test/prism/unescape_test.rb
@@ -2,7 +2,7 @@
require_relative "test_helper"
-return if RUBY_VERSION < "3.1.0"
+return if RUBY_VERSION < "3.1.0" || Prism::BACKEND == :FFI
module Prism
class UnescapeTest < TestCase