summaryrefslogtreecommitdiff
path: root/spec/ruby/library
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2021-04-15 13:38:45 +0900
committerYusuke Endoh <mame@ruby-lang.org>2021-04-15 13:40:16 +0900
commitdf0f60b690b131810de3dd1603e5bebc7f438903 (patch)
treeb29dbb3cd75cc8338201797790c77b98693f7422 /spec/ruby/library
parent92545977de0664bd2f37455dd4c4ac4e716a8be2 (diff)
spec/ruby/library/matrix/: Change the version guard to 3.1.0
[Bug #17521] won't be backported until 3.1.0. https://github.com/ruby/spec/pull/832
Diffstat (limited to 'spec/ruby/library')
-rw-r--r--spec/ruby/library/matrix/exponent_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/library/matrix/exponent_spec.rb b/spec/ruby/library/matrix/exponent_spec.rb
index a05826ab72..b76e18b4cd 100644
--- a/spec/ruby/library/matrix/exponent_spec.rb
+++ b/spec/ruby/library/matrix/exponent_spec.rb
@@ -34,7 +34,7 @@ describe "Matrix#**" do
end
end
- ruby_version_is '3.0.2' do # https://bugs.ruby-lang.org/issues/17521
+ ruby_version_is '3.1.0' do # https://bugs.ruby-lang.org/issues/17521
describe "that is 0" do
it "returns the identity for square matrices" do
m = Matrix[ [1, 1], [1, 1] ]