This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 8ddf4c9c7e9f020848aa763178a50cdcab3c6bc9 Author: Benoit Tellier <[email protected]> AuthorDate: Fri Aug 2 18:06:52 2019 +0200 JAMES-2829 UnionBlobStore should pass the whole test suite --- .../src/test/java/org/apache/james/blob/union/UnionBlobStoreTest.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/server/blob/blob-union/src/test/java/org/apache/james/blob/union/UnionBlobStoreTest.java b/server/blob/blob-union/src/test/java/org/apache/james/blob/union/UnionBlobStoreTest.java index e981edf..598f44b 100644 --- a/server/blob/blob-union/src/test/java/org/apache/james/blob/union/UnionBlobStoreTest.java +++ b/server/blob/blob-union/src/test/java/org/apache/james/blob/union/UnionBlobStoreTest.java @@ -33,7 +33,9 @@ import java.util.stream.Stream; import org.apache.james.blob.api.BlobId; import org.apache.james.blob.api.BlobStore; import org.apache.james.blob.api.BlobStoreContract; +import org.apache.james.blob.api.BucketBlobStoreContract; import org.apache.james.blob.api.BucketName; +import org.apache.james.blob.api.DeleteBlobStoreContract; import org.apache.james.blob.api.HashBlobId; import org.apache.james.blob.api.ObjectStoreException; import org.apache.james.blob.memory.MemoryBlobStore; @@ -52,7 +54,7 @@ import com.google.common.collect.ImmutableList; import reactor.core.publisher.Mono; -class UnionBlobStoreTest implements BlobStoreContract { +class UnionBlobStoreTest implements BlobStoreContract, DeleteBlobStoreContract, BucketBlobStoreContract { private static class FailingBlobStore implements BlobStore { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
