From f741e0f95bc8443b69d658d4047ba2f296f9171c Mon Sep 17 00:00:00 2001 From: Will Charczuk Date: Tue, 18 Apr 2017 20:18:28 -0700 Subject: [PATCH] typo. --- matrix/matrix_test.go | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/matrix/matrix_test.go b/matrix/matrix_test.go index 4a88bc1..bc896be 100644 --- a/matrix/matrix_test.go +++ b/matrix/matrix_test.go @@ -212,12 +212,12 @@ func TestMatrixSwapRows(t *testing.T) { {4, 5, 6}, {7, 8, 9}, }) - - m.SwapRows(0,1) - assert.Equal([]float64{4,5,6}, m.Row(0)) - assert.Equal([]float64{1,2,3}, m.Row(1)) - assert.Equal([]float64{7,8,9}, m.Row(2)) + m.SwapRows(0, 1) + + assert.Equal([]float64{4, 5, 6}, m.Row(0)) + assert.Equal([]float64{1, 2, 3}, m.Row(1)) + assert.Equal([]float64{7, 8, 9}, m.Row(2)) } func TestMatrixCopy(t *testing.T) { @@ -390,7 +390,7 @@ func TestMatrixTranspose(t *testing.T) { assert.Equal(3, rows) assert.Equal(4, cols) - assert.Equal(1, m2.Get(0,0)) - assert.Equal(10, m2.Get(0,3)) - assert.Equal(3, m2.Get(2,0)) -) + assert.Equal(1, m2.Get(0, 0)) + assert.Equal(10, m2.Get(0, 3)) + assert.Equal(3, m2.Get(2, 0)) +}