diff options
author | Nobuyoshi Nakada <[email protected]> | 2020-12-21 01:16:26 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2020-12-21 01:19:55 +0900 |
commit | 9c73c756244fa27ffa99d81dcc73a4ad14198002 (patch) | |
tree | 14b0ea9059b8c31e276531a1df712ead4e158cdb /spec/ruby/library/matrix/multiply_spec.rb | |
parent | fb8f011422c645ebe29e94c3fb2079af73d1d35f (diff) |
Use Integer instead of Fixnum/Bignum
Diffstat (limited to 'spec/ruby/library/matrix/multiply_spec.rb')
-rw-r--r-- | spec/ruby/library/matrix/multiply_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/library/matrix/multiply_spec.rb b/spec/ruby/library/matrix/multiply_spec.rb index 585f268931..e488bb0f5d 100644 --- a/spec/ruby/library/matrix/multiply_spec.rb +++ b/spec/ruby/library/matrix/multiply_spec.rb @@ -16,11 +16,11 @@ describe "Matrix#*" do (@a * Vector[1,2]).should == Vector[5, 11] end - it "returns the result of multiplying the elements of self and a Fixnum" do + it "returns the result of multiplying the elements of self and an Integer" do (@a * 2).should == Matrix[ [2, 4], [6, 8] ] end - it "returns the result of multiplying the elements of self and a Bignum" do + it "returns the result of multiplying the elements of self and an Integer" do (@a * bignum_value).should == Matrix[ [9223372036854775808, 18446744073709551616], [27670116110564327424, 36893488147419103232] |