| Index: go/src/infra/gae/libs/wrapper/memory/datastore_test.go
|
| diff --git a/go/src/infra/gae/libs/wrapper/memory/datastore_test.go b/go/src/infra/gae/libs/wrapper/memory/datastore_test.go
|
| index ebd01ab1b2fe50c217933f0ff700e9fb52bfa9ef..8ca4bd7db7e3434a62021050297837245ebb8319 100644
|
| --- a/go/src/infra/gae/libs/wrapper/memory/datastore_test.go
|
| +++ b/go/src/infra/gae/libs/wrapper/memory/datastore_test.go
|
| @@ -526,7 +526,7 @@ func TestDatastoreSingleReadWriter(t *testing.T) {
|
|
|
| const MaxUint = ^uint(0)
|
| const MaxInt = int(MaxUint >> 1)
|
| -const IntIs32Bits = MaxInt < math.MaxInt64
|
| +const IntIs32Bits = int64(MaxInt) < math.MaxInt64
|
|
|
| func TestDatastoreQueryer(t *testing.T) {
|
| Convey("Datastore Query suport", t, func() {
|
|
|