*: use coreos/bbolt as import path

pull/4/head
Xiang 2017-06-20 11:03:31 -07:00
parent e9cf4fae01
commit 78b54a42e1
6 changed files with 7 additions and 7 deletions

View File

@ -13,7 +13,7 @@ import (
"testing"
"testing/quick"
"github.com/boltdb/bolt"
"github.com/coreos/bbolt"
)
// Ensure that a bucket that gets a non-existent key returns nil.

View File

@ -12,8 +12,8 @@ import (
"strconv"
"testing"
"github.com/boltdb/bolt"
"github.com/boltdb/bolt/cmd/bolt"
"github.com/coreos/bbolt"
"github.com/coreos/bbolt/cmd/bolt"
)
// Ensure the "info" command can print information about a database.

View File

@ -11,7 +11,7 @@ import (
"testing"
"testing/quick"
"github.com/boltdb/bolt"
"github.com/coreos/bbolt"
)
// Ensure that a cursor can return a reference to the bucket that created it.

View File

@ -19,7 +19,7 @@ import (
"time"
"unsafe"
"github.com/boltdb/bolt"
"github.com/coreos/bbolt"
)
var statsFlag = flag.Bool("stats", false, "show performance stats")

View File

@ -7,7 +7,7 @@ import (
"sync"
"testing"
"github.com/boltdb/bolt"
"github.com/coreos/bbolt"
)
func TestSimulate_1op_1p(t *testing.T) { testSimulate(t, 1, 1) }

View File

@ -8,7 +8,7 @@ import (
"os"
"testing"
"github.com/boltdb/bolt"
"github.com/coreos/bbolt"
)
// Ensure that committing a closed transaction returns an error.