tests: fix compile error in matrix_test.go

Error was:

tests/matrix/matrix_test.go:101:9: no new variables on left side of :=
This commit is contained in:
Jakob Unterwurzacher 2019-02-17 17:25:41 +01:00
parent 179471b648
commit 173218895c
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ func testWriteN(t *testing.T, fn string, n int) string {
}
d := make([]byte, n)
_, err := file.Write(d)
_, err = file.Write(d)
if err != nil {
t.Fatal(err)
}