swarm/storage/localstore: fix test name

This commit is contained in:
Janos Guljas 2018-12-03 13:42:10 +01:00
parent c7beb228e6
commit 391faa7272

View file

@ -33,9 +33,10 @@ func TestAccessors(t *testing.T) {
testAccessors(t, db)
}
// TestAccessors tests most basic Put and Get functionalities
// for different accessors by using retrieval composite index.
func TestAccessors_WithRetrievalCompositeIndex(t *testing.T) {
// TestAccessors_withRetrievalCompositeIndex tests most basic
// Put and Get functionalities for different accessors
// by using retrieval composite index.
func TestAccessors_withRetrievalCompositeIndex(t *testing.T) {
db, cleanupFunc := newTestDB(t, WithRetrievalCompositeIndex(true))
defer cleanupFunc()