From 0bff9a461cb643dc7011de49c12b74d785bb3dc7 Mon Sep 17 00:00:00 2001 From: Gyuho Lee Date: Mon, 27 Aug 2018 19:25:01 -0700 Subject: [PATCH] *: update import paths to "github.com/etcd-io/bbolt" Signed-off-by: Gyuho Lee --- bucket_test.go | 2 +- cursor_test.go | 2 +- db_test.go | 2 +- simulation_no_freelist_sync_test.go | 2 +- simulation_test.go | 2 +- tx_test.go | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bucket_test.go b/bucket_test.go index b7ce32c..646db95 100644 --- a/bucket_test.go +++ b/bucket_test.go @@ -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. diff --git a/cursor_test.go b/cursor_test.go index 7b1ae19..0480c74 100644 --- a/cursor_test.go +++ b/cursor_test.go @@ -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. diff --git a/db_test.go b/db_test.go index e3a58c3..74f2f03 100644 --- a/db_test.go +++ b/db_test.go @@ -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") diff --git a/simulation_no_freelist_sync_test.go b/simulation_no_freelist_sync_test.go index da2031e..3324535 100644 --- a/simulation_no_freelist_sync_test.go +++ b/simulation_no_freelist_sync_test.go @@ -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) { diff --git a/simulation_test.go b/simulation_test.go index a5889c0..8ae2e3a 100644 --- a/simulation_test.go +++ b/simulation_test.go @@ -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) } diff --git a/tx_test.go b/tx_test.go index de92cb5..2cc2c7c 100644 --- a/tx_test.go +++ b/tx_test.go @@ -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.