diff options
| author | Alan Wu <XrXr@users.noreply.github.com> | 2025-08-29 18:34:11 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-29 22:34:11 +0000 |
| commit | 96c8938535ff0cb2bf65943d7472a6702a121e16 (patch) | |
| tree | 055b0809c9f28f7bdbe38c0a890b7de498ace204 | |
| parent | d4d510da1888d2b731ee85470e316673a1112b4a (diff) | |
Shrink ruby_bug version guard in anticipation of 3.4.6 release
Fix for this bug was merged into ruby_3_4 in 5a42d267bfabc86f86cae2e83de24b1b86bc316a
and should go out in the next 3.4.x release.
| -rw-r--r-- | spec/ruby/language/regexp/character_classes_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/language/regexp/character_classes_spec.rb b/spec/ruby/language/regexp/character_classes_spec.rb index 80cf88c7bd..018757db41 100644 --- a/spec/ruby/language/regexp/character_classes_spec.rb +++ b/spec/ruby/language/regexp/character_classes_spec.rb @@ -562,7 +562,7 @@ describe "Regexp with character classes" do "\u{16EE}".match(/[[:word:]]/).to_a.should == ["\u{16EE}"] end - ruby_bug "#19417", ""..."3.5" do + ruby_bug "#19417", ""..."3.4.6" do it "matches Unicode join control characters with [[:word:]]" do "\u{200C}".match(/[[:word:]]/).to_a.should == ["\u{200C}"] "\u{200D}".match(/[[:word:]]/).to_a.should == ["\u{200D}"] |
