summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2021-04-06 15:19:23 +0900
committerYusuke Endoh <mame@ruby-lang.org>2021-04-06 15:19:23 +0900
commit93c73ab8982b23faed6d19b82c0f17de9338ff13 (patch)
treeb498955cf939e8922c06e0ebed0ae3355befe158
parentff91b97c83c5e9aa67bc4032d70f0ed19b334f44 (diff)
spec/ruby/library/matrix/: Change the version guard to 3.0.2
[Bug #17521] is not backported to 3.0.1.
-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 a310cc2c70..a05826ab72 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.1' do # https://bugs.ruby-lang.org/issues/17521
+ ruby_version_is '3.0.2' 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] ]