From 8ceef9f3578cccd0afb4fdea30c43fd0c1e469b2 Mon Sep 17 00:00:00 2001 From: Michal Niewrzal Date: Wed, 25 Nov 2020 13:20:03 +0100 Subject: [PATCH] satellite/metainfo: temporary disable one assertion in test This is need to merge https://review.dev.storj.io/c/storj/uplink/+/3208 , after that this code will be back. Change-Id: If9f2f1db95c7a1bba64a41c45a39bd3096a519e7 --- satellite/metainfo/metainfo_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/satellite/metainfo/metainfo_test.go b/satellite/metainfo/metainfo_test.go index 994fd64af..83d044def 100644 --- a/satellite/metainfo/metainfo_test.go +++ b/satellite/metainfo/metainfo_test.go @@ -562,7 +562,8 @@ func TestListGetObjects(t *testing.T) { EncryptedPath: item.EncryptedPath, }) require.NoError(t, err) - require.Equal(t, item.EncryptedPath, []byte(object.Path)) + // TODO uncomment after merging uplink changes + // require.Equal(t, item.EncryptedPath, []byte(object.EncryptedPath)) require.NotEmpty(t, object.StreamID) }