diff options
author | Yusuke Endoh <[email protected]> | 2021-04-15 13:38:45 +0900 |
---|---|---|
committer | Yusuke Endoh <[email protected]> | 2021-04-15 13:40:16 +0900 |
commit | df0f60b690b131810de3dd1603e5bebc7f438903 (patch) | |
tree | b29dbb3cd75cc8338201797790c77b98693f7422 /spec/ruby/library/matrix | |
parent | 92545977de0664bd2f37455dd4c4ac4e716a8be2 (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/matrix')
-rw-r--r-- | spec/ruby/library/matrix/exponent_spec.rb | 2 |
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] ] |