diff options
author | Nobuyoshi Nakada <[email protected]> | 2021-01-11 14:00:35 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2021-01-11 14:00:35 +0900 |
commit | 5e00eeb4d445fe28ec16b7c28cc9c02c5fc764db (patch) | |
tree | 54e330c0c4d6150eddbc00d7b8ec5171797df716 | |
parent | d2aaf865e3e5ecfcd10c879ce4263dc3a8f7fccf (diff) |
[ruby/matrix] use an exclusive range [Bug #17521]
-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 7eb478e1a7..71c5f97769 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_bug '#17521', ''..'3.0.0' do + ruby_bug '#17521', ''...'3.0.1' do describe "that is 0" do it "returns the identity for square matrices" do m = Matrix[ [1, 1], [1, 1] ] |