From e0487ec45e12044874473d6c4a05cc25a00d8afb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20D=C3=BCrst?= Date: Tue, 6 Dec 2022 10:10:36 +0900 Subject: [PATCH] update rbconfig spec to Unicode version 15.0.0 (this includes emoji version 15.0) --- spec/ruby/library/rbconfig/unicode_emoji_version_spec.rb | 4 ++-- spec/ruby/library/rbconfig/unicode_version_spec.rb | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/spec/ruby/library/rbconfig/unicode_emoji_version_spec.rb b/spec/ruby/library/rbconfig/unicode_emoji_version_spec.rb index a4a24c535d..3dc9900127 100644 --- a/spec/ruby/library/rbconfig/unicode_emoji_version_spec.rb +++ b/spec/ruby/library/rbconfig/unicode_emoji_version_spec.rb @@ -16,8 +16,8 @@ describe "RbConfig::CONFIG['UNICODE_EMOJI_VERSION']" do # Caution: ruby_version_is means is_or_later ruby_version_is "3.2" do - it "is 14.0" do - RbConfig::CONFIG['UNICODE_EMOJI_VERSION'].should == "14.0" + it "is 15.0" do + RbConfig::CONFIG['UNICODE_EMOJI_VERSION'].should == "15.0" end end end diff --git a/spec/ruby/library/rbconfig/unicode_version_spec.rb b/spec/ruby/library/rbconfig/unicode_version_spec.rb index d0ff856764..458f13bf03 100644 --- a/spec/ruby/library/rbconfig/unicode_version_spec.rb +++ b/spec/ruby/library/rbconfig/unicode_version_spec.rb @@ -16,8 +16,8 @@ describe "RbConfig::CONFIG['UNICODE_VERSION']" do # Caution: ruby_version_is means is_or_later ruby_version_is "3.2" do - it "is 14.0.0" do - RbConfig::CONFIG['UNICODE_VERSION'].should == "14.0.0" + it "is 15.0.0" do + RbConfig::CONFIG['UNICODE_VERSION'].should == "15.0.0" end end end