summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Dürst <duerst@it.aoyama.ac.jp>2022-12-06 10:10:36 +0900
committerMartin Dürst <duerst@it.aoyama.ac.jp>2022-12-06 10:11:33 +0900
commite0487ec45e12044874473d6c4a05cc25a00d8afb (patch)
treedc860afdecf76f549ab0ffcbec5e4916d6a452a9
parent368b844874afe10d4a402baa15f1e3fd6cb14e16 (diff)
update rbconfig spec to Unicode version 15.0.0
(this includes emoji version 15.0)
-rw-r--r--spec/ruby/library/rbconfig/unicode_emoji_version_spec.rb4
-rw-r--r--spec/ruby/library/rbconfig/unicode_version_spec.rb4
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