From 5ef1ae7349eff2bd7b881b8730886f7c41022c34 Mon Sep 17 00:00:00 2001 From: Chris Grass Date: Fri, 13 Dec 2024 17:30:38 -0800 Subject: [PATCH] fix test --- flyteadmin/pkg/data/implementations/azure_remote_url_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flyteadmin/pkg/data/implementations/azure_remote_url_test.go b/flyteadmin/pkg/data/implementations/azure_remote_url_test.go index 67da9551f7..cb422d1169 100644 --- a/flyteadmin/pkg/data/implementations/azure_remote_url_test.go +++ b/flyteadmin/pkg/data/implementations/azure_remote_url_test.go @@ -10,6 +10,10 @@ import ( type mockMetadata struct{} +func (m mockMetadata) ContentMD5() string { + return "" +} + func (m mockMetadata) Exists() bool { return true }