diff options
author | Hiroshi SHIBATA <[email protected]> | 2022-12-26 13:52:48 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2022-12-26 13:52:48 +0900 |
commit | a236661a62dc89173dcdd9e071365929db1201a7 (patch) | |
tree | 7ecd378e582a5a70e9d74369826dddc0a200c87d /spec/ruby/language | |
parent | 5ec94ff7400c812b4e662560271540bc5690d307 (diff) |
Skip some examples for Ruby 3.3
Diffstat (limited to 'spec/ruby/language')
-rw-r--r-- | spec/ruby/language/regexp_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/language/regexp_spec.rb b/spec/ruby/language/regexp_spec.rb index d49689349d..646fb89d41 100644 --- a/spec/ruby/language/regexp_spec.rb +++ b/spec/ruby/language/regexp_spec.rb @@ -114,7 +114,7 @@ describe "Literal Regexps" do /foo.(?<=\d)/.match("fooA foo1").to_a.should == ["foo1"] end - ruby_bug "#13671", ""..."3.3" do # https://bugs.ruby-lang.org/issues/13671 + ruby_bug "#13671", ""..."3.4" do # https://bugs.ruby-lang.org/issues/13671 it "handles a lookbehind with ss characters" do r = Regexp.new("(?<!dss)", Regexp::IGNORECASE) r.should =~ "✨" |