core: Remove limitedstore from composer test

This commit is contained in:
Marius 2019-06-11 17:13:49 +02:00
parent 32cf95aefe
commit 6f5b74b875
1 changed files with 0 additions and 4 deletions

View File

@ -3,7 +3,6 @@ package tusd_test
import (
"github.com/tus/tusd"
"github.com/tus/tusd/filestore"
"github.com/tus/tusd/limitedstore"
"github.com/tus/tusd/memorylocker"
)
@ -16,9 +15,6 @@ func ExampleNewStoreComposer() {
ml := memorylocker.New()
ml.UseIn(composer)
ls := limitedstore.New(1024*1024*1024, composer.Core, composer.Terminater)
ls.UseIn(composer)
config := tusd.Config{
StoreComposer: composer,
}