summaryrefslogtreecommitdiff
path: root/spec/ruby/library/matrix/divide_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/matrix/divide_spec.rb')
-rw-r--r--spec/ruby/library/matrix/divide_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/library/matrix/divide_spec.rb b/spec/ruby/library/matrix/divide_spec.rb
index 2e3bb85bf6..84cecff582 100644
--- a/spec/ruby/library/matrix/divide_spec.rb
+++ b/spec/ruby/library/matrix/divide_spec.rb
@@ -16,11 +16,11 @@ describe "Matrix#/" do
# Guard against the Mathn library
guard -> { !defined?(Math.rsqrt) } do
- it "returns the result of dividing self by a Fixnum" do
+ it "returns the result of dividing self by an Integer" do
(@a / 2).should == Matrix[ [0, 1], [1, 2] ]
end
- it "returns the result of dividing self by a Bignum" do
+ it "returns the result of dividing self by an Integer" do
(@a / bignum_value).should == Matrix[ [0, 0], [0, 0] ]
end
end