From 391faa727274f24cce7ab6b41dd22aaa005b0562 Mon Sep 17 00:00:00 2001 From: Janos Guljas Date: Mon, 3 Dec 2018 13:42:10 +0100 Subject: [PATCH] swarm/storage/localstore: fix test name --- swarm/storage/localstore/accessor_test.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/swarm/storage/localstore/accessor_test.go b/swarm/storage/localstore/accessor_test.go index 9e35e1cdf8..1c847b7529 100644 --- a/swarm/storage/localstore/accessor_test.go +++ b/swarm/storage/localstore/accessor_test.go @@ -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()