azureblob: remove 100MB upper limit on chunk_size as it is no longer needed

This commit is contained in:
Nick Craig-Wood 2021-11-12 12:12:20 +00:00
parent 4454b3e1ae
commit fbc4c4ad9a
2 changed files with 5 additions and 11 deletions

View file

@ -17,12 +17,10 @@ import (
// TestIntegration runs integration tests against the remote
func TestIntegration(t *testing.T) {
fstests.Run(t, &fstests.Opt{
RemoteName: "TestAzureBlob:",
NilObject: (*Object)(nil),
TiersToTest: []string{"Hot", "Cool"},
ChunkedUpload: fstests.ChunkedUploadConfig{
MaxChunkSize: maxChunkSize,
},
RemoteName: "TestAzureBlob:",
NilObject: (*Object)(nil),
TiersToTest: []string{"Hot", "Cool"},
ChunkedUpload: fstests.ChunkedUploadConfig{},
})
}