Address review nits
This commit is contained in:
parent
1cdf6a6f8d
commit
6f578d4006
1
Makefile
1
Makefile
@ -11,6 +11,7 @@ endif
|
|||||||
MODULES:=
|
MODULES:=
|
||||||
|
|
||||||
CLEAN:=
|
CLEAN:=
|
||||||
|
BINS:=
|
||||||
|
|
||||||
## FFI
|
## FFI
|
||||||
|
|
||||||
|
@ -4,7 +4,6 @@ import (
|
|||||||
"bytes"
|
"bytes"
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"math/rand"
|
"math/rand"
|
||||||
"os"
|
"os"
|
||||||
@ -43,7 +42,9 @@ func TestDealFlow(t *testing.T, b APIBuilder) {
|
|||||||
}
|
}
|
||||||
time.Sleep(time.Second)
|
time.Sleep(time.Second)
|
||||||
|
|
||||||
data, _ := ioutil.ReadAll(io.LimitReader(rand.New(rand.NewSource(5)), 1000))
|
data := make([]byte, 1000)
|
||||||
|
rand.New(rand.NewSource(5)).Read(data)
|
||||||
|
|
||||||
r := bytes.NewReader(data)
|
r := bytes.NewReader(data)
|
||||||
fcid, err := client.ClientImportLocal(ctx, r)
|
fcid, err := client.ClientImportLocal(ctx, r)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user