core: Remove limitedstore from composer test
This commit is contained in:
parent
32cf95aefe
commit
6f5b74b875
|
@ -3,7 +3,6 @@ package tusd_test
|
||||||
import (
|
import (
|
||||||
"github.com/tus/tusd"
|
"github.com/tus/tusd"
|
||||||
"github.com/tus/tusd/filestore"
|
"github.com/tus/tusd/filestore"
|
||||||
"github.com/tus/tusd/limitedstore"
|
|
||||||
"github.com/tus/tusd/memorylocker"
|
"github.com/tus/tusd/memorylocker"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -16,9 +15,6 @@ func ExampleNewStoreComposer() {
|
||||||
ml := memorylocker.New()
|
ml := memorylocker.New()
|
||||||
ml.UseIn(composer)
|
ml.UseIn(composer)
|
||||||
|
|
||||||
ls := limitedstore.New(1024*1024*1024, composer.Core, composer.Terminater)
|
|
||||||
ls.UseIn(composer)
|
|
||||||
|
|
||||||
config := tusd.Config{
|
config := tusd.Config{
|
||||||
StoreComposer: composer,
|
StoreComposer: composer,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue