@cryptotaxi247 / kubo / commits / 4ed8c3e5d

test: fix typo in blockstore test

Also format imports License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>

Jakub Sztandera committed Aug 18, 2016 at 18:09 UTC 4ed8c3e5d93f0d686de3d1764270563e15c6e199
1 file changed +3 -2
blocks/blockstore/arc_cache_test.go
+3 -2
@@ -1,9 +1,10 @@
1 package blockstore
2
3 import (
4 + "testing"
5 +
6 "github.com/ipfs/go-ipfs/blocks"
7 "github.com/ipfs/go-ipfs/blocks/key"
6 - "testing"
8
9 ds "gx/ipfs/QmTxLSvdhwg68WJimdS6icLPhZi28aTp6b7uihC2Yb47Xk/go-datastore"
10 syncds "gx/ipfs/QmTxLSvdhwg68WJimdS6icLPhZi28aTp6b7uihC2Yb47Xk/go-datastore/sync"
@@ -122,7 +123,7 @@ func TestGetFillsCache(t *testing.T) {
123 }
124 }
125
125 -func TestGetAndDeleteFalseShortCirciot(t *testing.T) {
126 +func TestGetAndDeleteFalseShortCircuit(t *testing.T) {
127 arc, _, cd := createStores(t)
128
129 arc.Has(exampleBlock.Key())