Merge pull request #8 from gyuho/ci

gofmt, change git path
pull/13/head
Gyu-Ho Lee 2017-07-27 15:05:25 -07:00 committed by GitHub
commit 2ab139b399
4 changed files with 5 additions and 6 deletions

View File

@ -9,9 +9,9 @@ race:
# go get github.com/kisielk/errcheck
errcheck:
@errcheck -ignorepkg=bytes -ignore=os:Remove github.com/boltdb/bolt
@errcheck -ignorepkg=bytes -ignore=os:Remove github.com/coreos/bbolt
test:
test:
@go test -v -cover .
@go test -v ./cmd/bolt

View File

@ -19,7 +19,7 @@ import (
"unicode/utf8"
"unsafe"
"github.com/boltdb/bolt"
bolt "github.com/coreos/bbolt"
)
var (

View File

@ -1587,7 +1587,7 @@ func mustContainKeys(b *bolt.Bucket, m map[string]string) {
// Check for keys found in bucket that shouldn't be there.
var keys []string
for k, _ := range found {
for k := range found {
if _, ok := m[string(k)]; !ok {
keys = append(keys, k)
}
@ -1598,7 +1598,7 @@ func mustContainKeys(b *bolt.Bucket, m map[string]string) {
}
// Check for keys not found in bucket that should be there.
for k, _ := range m {
for k := range m {
if _, ok := found[string(k)]; !ok {
keys = append(keys, k)
}

View File

@ -6,7 +6,6 @@ import (
"unsafe"
)
// txPending holds a list of pgids and corresponding allocation txns
// that are pending to be freed.
type txPending struct {