Skip to content

Commit

Permalink
*: update import paths to "github.com/etcd-io/bbolt"
Browse files Browse the repository at this point in the history
Signed-off-by: Gyuho Lee <[email protected]>
  • Loading branch information
gyuho committed Aug 28, 2018
1 parent 8c8b786 commit 0bff9a4
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bucket_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion cursor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion db_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion simulation_no_freelist_sync_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion simulation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) }
Expand Down
2 changes: 1 addition & 1 deletion tx_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 0bff9a4

Please sign in to comment.