Skip to content

Commit

Permalink
ci: uci/copy-templates (#207)
Browse files Browse the repository at this point in the history
* chore: bump go.mod to Go 1.20 and run go fix

* chore: bump go.mod to Go 1.20 and run go fix

* fix: stop using math/rand.Read in basic_tests

* fix: stop using math/rand.Read in test_util
  • Loading branch information
web3-bot authored Aug 15, 2023
1 parent 818215d commit 51ad837
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion fuzz/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ipfs/go-datastore/fuzz

go 1.19
go 1.20

require (
github.com/ipfs/go-datastore v0.6.0
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ require (
go.uber.org/atomic v1.6.0 // indirect
)

go 1.19
go 1.20
2 changes: 1 addition & 1 deletion test/basic_tests.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package dstest
import (
"bytes"
"context"
"crypto/rand"
"fmt"
"math/rand"
"reflect"
"strings"
"testing"
Expand Down
2 changes: 1 addition & 1 deletion test/test_util.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package dstest
import (
"bytes"
"context"
"crypto/rand"
"encoding/base32"
"errors"
"math/rand"
"testing"

dstore "github.com/ipfs/go-datastore"
Expand Down

0 comments on commit 51ad837

Please sign in to comment.