*: update import paths to "github.com/etcd-io/bbolt"

Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
pull/119/head
Gyuho Lee 2018-08-27 19:25:01 -07:00
parent 8c8b786149
commit 0bff9a461c
6 changed files with 6 additions and 6 deletions

View File

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

View File

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

View File

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

View File

@ -3,7 +3,7 @@ package bolt_test
import (
"testing"
"github.com/coreos/bbolt"
"github.com/etcd-io/bbolt"
)
func TestSimulateNoFreeListSync_1op_1p(t *testing.T) {

View File

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

View File

@ -8,7 +8,7 @@ import (
"os"
"testing"
"github.com/coreos/bbolt"
"github.com/etcd-io/bbolt"
)
// TestTx_Check_ReadOnly tests consistency checking on a ReadOnly database.