diff options
Diffstat (limited to 'spec/ruby')
-rw-r--r-- | spec/ruby/library/rbconfig/unicode_emoji_version_spec.rb | 4 | ||||
-rw-r--r-- | 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 27220f4983..522aad22e6 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.5" do - it "is 15.1" do - RbConfig::CONFIG['UNICODE_EMOJI_VERSION'].should == "15.1" + it "is 16.0" do + RbConfig::CONFIG['UNICODE_EMOJI_VERSION'].should == "16.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 bcb67a5076..0c8372b9da 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.5" do - it "is 15.1.0" do - RbConfig::CONFIG['UNICODE_VERSION'].should == "15.1.0" + it "is 16.0.0" do + RbConfig::CONFIG['UNICODE_VERSION'].should == "16.0.0" end end end |