Skip to content

Commit 497e68d

Browse files
committed
updated bolt import path
1 parent 1c016fe commit 497e68d

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

boltfs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"syscall"
1212
"time"
1313

14-
bolt "github.com/etcd-io/bbolt"
14+
bolt "go.etcd.io/bbolt"
1515

1616
"github.com/absfs/absfs"
1717
)

boltfs_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"time"
1010

1111
"github.com/absfs/absfs"
12-
bolt "github.com/etcd-io/bbolt"
12+
bolt "go.etcd.io/bbolt"
1313
)
1414

1515
func BeforeEach(t *testing.T) *bolt.DB {

file_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"unicode"
1313

1414
"github.com/absfs/absfs"
15-
bolt "github.com/etcd-io/bbolt"
15+
bolt "go.etcd.io/bbolt"
1616
)
1717

1818
func TestFile(t *testing.T) {

fsbucket.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
filepath "path"
66
"strings"
77

8-
bolt "github.com/etcd-io/bbolt"
8+
bolt "go.etcd.io/bbolt"
99
)
1010

1111
var buckets = []string{"state", "inodes", "data", "symlinks"}

fsbucket_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"reflect"
66
"testing"
77

8-
bolt "github.com/etcd-io/bbolt"
8+
bolt "go.etcd.io/bbolt"
99
)
1010

1111
func Test_newFsBucket(t *testing.T) {

inode.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"syscall"
1313
"time"
1414

15-
bolt "github.com/etcd-io/bbolt"
15+
bolt "go.etcd.io/bbolt"
1616
)
1717

1818
var errNilNode = errors.New("nil node")

0 commit comments

Comments
 (0)