summaryrefslogtreecommitdiff
path: root/spec/ruby
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-12-26 22:40:50 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-12-26 23:28:54 +0900
commitabad017354a5e6a03582a8dde58c66caec2bc924 (patch)
tree573bf780bad2a25495a2dddf5bb09d910f9b82b6 /spec/ruby
parent7c738ce5e649b82bdc1305d5c347e81886ee759a (diff)
Postpone fix of lookbehind with ss characters tentatively
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/5348
Diffstat (limited to 'spec/ruby')
-rw-r--r--spec/ruby/language/regexp_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/language/regexp_spec.rb b/spec/ruby/language/regexp_spec.rb
index f607fa6010..8fc4dc4f0a 100644
--- a/spec/ruby/language/regexp_spec.rb
+++ b/spec/ruby/language/regexp_spec.rb
@@ -115,7 +115,7 @@ describe "Literal Regexps" do
/foo.(?<=\d)/.match("fooA foo1").to_a.should == ["foo1"]
end
- ruby_bug "#13671", ""..."3.2" do # https://bugs.ruby-lang.org/issues/13671
+ ruby_bug "#13671", ""..."3.3" do # https://bugs.ruby-lang.org/issues/13671
it "handles a lookbehind with ss characters" do
r = Regexp.new("(?<!dss)", Regexp::IGNORECASE)
r.should =~ "✨"