From 4558abec020b786eb337f6edf4e114cae80228aa Mon Sep 17 00:00:00 2001 From: Kevin Newton Date: Thu, 30 May 2024 15:21:06 -0400 Subject: [PATCH] [ruby/prism] Disallow unescape test on FFI backend https://github.com/ruby/prism/commit/32277722d4 --- test/prism/unescape_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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