From b5838aeabc87c6e42e5cb7fd38b2eacd4a246c85 Mon Sep 17 00:00:00 2001 From: btracey Date: Fri, 9 Aug 2013 21:18:50 -0700 Subject: [PATCH] Removed 'of c' in cblas: index out of range --- mat64/matrix_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mat64/matrix_test.go b/mat64/matrix_test.go index 8c781f44..c0223150 100644 --- a/mat64/matrix_test.go +++ b/mat64/matrix_test.go @@ -461,7 +461,7 @@ func (s *S) TestMul(c *check.C) { // These probably warrant a better check and failure. They should never happen in the wild though. temp.mat.Data = nil - c.Check(func() { temp.Mul(a, b) }, check.PanicMatches, "cblas: index of c out of range", check.Commentf("Test %d")) + c.Check(func() { temp.Mul(a, b) }, check.PanicMatches, "cblas: index out of range", check.Commentf("Test %d")) } }