removed io package for consistency

This commit is contained in:
Tom Mombourquette 2019-11-20 21:48:09 -04:00
parent b8247ce972
commit 5d492d737f
1 changed files with 1 additions and 2 deletions

View File

@ -1,7 +1,6 @@
package mem package mem
import ( import (
"io"
"io/ioutil" "io/ioutil"
"testing" "testing"
@ -29,7 +28,7 @@ func Test_File_Seek(t *testing.T) {
r.NoError(err) r.NoError(err)
// seek to end of file before read // seek to end of file before read
pos, err := f.Seek(0, io.SeekEnd) pos, err := f.Seek(0, 2)
r.NoError(err) r.NoError(err)
r.Equal(int64(len(data)), pos) r.Equal(int64(len(data)), pos)