aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/library/matrix/regular_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/library/matrix/regular_spec.rb')
-rw-r--r--spec/rubyspec/library/matrix/regular_spec.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/spec/rubyspec/library/matrix/regular_spec.rb b/spec/rubyspec/library/matrix/regular_spec.rb
index a62a200d6d..2f0af99c1e 100644
--- a/spec/rubyspec/library/matrix/regular_spec.rb
+++ b/spec/rubyspec/library/matrix/regular_spec.rb
@@ -20,12 +20,12 @@ describe "Matrix#regular?" do
end
it "raises an error for rectangular matrices" do
- lambda {
- Matrix[[1], [2], [3]].regular?
- }.should raise_error(Matrix::ErrDimensionMismatch)
+ lambda {
+ Matrix[[1], [2], [3]].regular?
+ }.should raise_error(Matrix::ErrDimensionMismatch)
- lambda {
- Matrix.empty(3,0).regular?
- }.should raise_error(Matrix::ErrDimensionMismatch)
- end
+ lambda {
+ Matrix.empty(3,0).regular?
+ }.should raise_error(Matrix::ErrDimensionMismatch)
+ end
end