File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- package bbolt
15
+ package bolt
16
16
17
17
import (
18
18
"bytes"
@@ -26,13 +26,13 @@ import (
26
26
)
27
27
28
28
const (
29
- Name = "bbolt "
29
+ Name = "bolt "
30
30
)
31
31
32
32
func init () {
33
33
kv .Register (kv.Registration {
34
34
Registration : base.Registration {
35
- Name : Name , Title : "BBoltDB " ,
35
+ Name : Name , Title : "BoltDB " ,
36
36
Local : true ,
37
37
},
38
38
OpenPath : OpenPath ,
Original file line number Diff line number Diff line change 1
- package bbolt
1
+ package bolt
2
2
3
3
import (
4
4
"path/filepath"
8
8
"github.com/aperturerobotics/cayley/kv/kvtest"
9
9
)
10
10
11
- func TestBBolt (t * testing.T ) {
11
+ func TestBolt (t * testing.T ) {
12
12
kvtest .RunTestLocal (t , func (path string ) (kv.KV , error ) {
13
- path = filepath .Join (path , "bbolt .db" )
13
+ path = filepath .Join (path , "bolt .db" )
14
14
return OpenPath (path )
15
15
}, nil )
16
16
}
You can’t perform that action at this time.
0 commit comments