1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* remove trailing spaces.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52236 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
svn 2015-10-23 02:09:16 +00:00
parent d07ce082a6
commit 4f9ded5cdd

View file

@ -585,7 +585,7 @@ class TestMatrix < Test::Unit::TestCase
def test_eigenvalues_and_eigenvectors_symmetric
m = Matrix[
[8, 1],
[8, 1],
[1, 8]
]
values = m.eigensystem.eigenvalues
@ -598,7 +598,7 @@ class TestMatrix < Test::Unit::TestCase
def test_eigenvalues_and_eigenvectors_nonsymmetric
m = Matrix[
[8, 1],
[8, 1],
[4, 5]
]
values = m.eigensystem.eigenvalues