aboutsummaryrefslogtreecommitdiff
path: root/tests/matrix/concurrency_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/matrix/concurrency_test.go')
-rw-r--r--tests/matrix/concurrency_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/matrix/concurrency_test.go b/tests/matrix/concurrency_test.go
index 04b7c96..d133c45 100644
--- a/tests/matrix/concurrency_test.go
+++ b/tests/matrix/concurrency_test.go
@@ -110,6 +110,7 @@ func TestConcurrentReadCreate(t *testing.T) {
continue
}
n, err := f.Read(buf0)
+ f.Close()
if err == io.EOF {
i++
continue
@@ -122,7 +123,6 @@ func TestConcurrentReadCreate(t *testing.T) {
// Calling t.Fatal() from a goroutine hangs the test so we use log.Fatal
log.Fatalf("%s: content mismatch: have=%q want=%q", t.Name(), string(buf), string(content))
}
- f.Close()
}
wg.Done()
}()