From 3fc6ee1848f1c63d9abfeb649c7c0cc183adb6a0 Mon Sep 17 00:00:00 2001 From: Roger Ng Date: Thu, 5 Dec 2024 12:15:34 +0000 Subject: [PATCH] Add AWS into the `StorageContract` --- integration/storage_uniformity_test.go | 2 ++ 1 file changed, 2 insertions(+) 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{} )