summaryrefslogtreecommitdiff
path: root/spec/ruby
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-01-11 14:00:35 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-01-11 14:00:35 +0900
commit5e00eeb4d445fe28ec16b7c28cc9c02c5fc764db (patch)
tree54e330c0c4d6150eddbc00d7b8ec5171797df716 /spec/ruby
parentd2aaf865e3e5ecfcd10c879ce4263dc3a8f7fccf (diff)
[ruby/matrix] use an exclusive range [Bug #17521]
Diffstat (limited to 'spec/ruby')
-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 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] ]