Skip to content

Commit 3e85995

Browse files
committed
refactor: call bbolt bolt
Signed-off-by: Christian Stewart <christian@aperture.us>
1 parent 77ed941 commit 3e85995

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

kv/bolt/bolt.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
package bbolt
15+
package bolt
1616

1717
import (
1818
"bytes"
@@ -26,13 +26,13 @@ import (
2626
)
2727

2828
const (
29-
Name = "bbolt"
29+
Name = "bolt"
3030
)
3131

3232
func init() {
3333
kv.Register(kv.Registration{
3434
Registration: base.Registration{
35-
Name: Name, Title: "BBoltDB",
35+
Name: Name, Title: "BoltDB",
3636
Local: true,
3737
},
3838
OpenPath: OpenPath,

kv/bolt/bolt_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package bbolt
1+
package bolt
22

33
import (
44
"path/filepath"
@@ -8,9 +8,9 @@ import (
88
"github.com/aperturerobotics/cayley/kv/kvtest"
99
)
1010

11-
func TestBBolt(t *testing.T) {
11+
func TestBolt(t *testing.T) {
1212
kvtest.RunTestLocal(t, func(path string) (kv.KV, error) {
13-
path = filepath.Join(path, "bbolt.db")
13+
path = filepath.Join(path, "bolt.db")
1414
return OpenPath(path)
1515
}, nil)
1616
}

0 commit comments

Comments
 (0)