Unverified Commit 80fcc4ec authored by Whyrusleeping's avatar Whyrusleeping Committed by GitHub

Merge pull request #5276 from schomatis/fix/dag-mod/testLargeWriteChunks/seek

test: testLargeWriteChunks: seek before reading
parents ec61e06c c6fb3045
......@@ -323,6 +323,11 @@ func testLargeWriteChunks(t *testing.T, opts testu.NodeOpts) {
}
}
_, err = dagmod.Seek(0, io.SeekStart)
if err != nil {
t.Fatal(err)
}
out, err := ioutil.ReadAll(dagmod)
if err != nil {
t.Fatal(err)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment