diff --git a/integration/storage_uniformity_test.go b/integration/storage_uniformity_test.go index e71ec742..123240aa 100644 --- a/integration/storage_uniformity_test.go +++ b/integration/storage_uniformity_test.go @@ -19,6 +19,7 @@ import ( "context" tessera "github.com/transparency-dev/trillian-tessera" + "github.com/transparency-dev/trillian-tessera/storage/aws" "github.com/transparency-dev/trillian-tessera/storage/gcp" "github.com/transparency-dev/trillian-tessera/storage/mysql" "github.com/transparency-dev/trillian-tessera/storage/posix" @@ -35,4 +36,5 @@ var ( _ StorageContract = &mysql.Storage{} _ StorageContract = &gcp.Storage{} _ StorageContract = &posix.Storage{} + _ StorageContract = &aws.Storage{} )