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:
parent
179471b648
commit
173218895c
@ -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)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user