From 5ddedae4318ad80ebe01d9ac4d2fa038512d51b7 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Mon, 15 Jul 2024 12:18:14 +0100 Subject: [PATCH] fstest: fix compile after merge After merging this commit 56caab2033a1983b b2: Include custom upload headers in large file info The compile failed as a change had been missed. Should have rebased before merging! --- fstest/fstests/fstests.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fstest/fstests/fstests.go b/fstest/fstests/fstests.go index 237388a6d..00e5372f5 100644 --- a/fstest/fstests/fstests.go +++ b/fstest/fstests/fstests.go @@ -1709,7 +1709,7 @@ func Run(t *testing.T, opt *Opt) { // User metadata "potato": "jersey", } - obj = PutTestContentsMetadata(ctx, t, f, &file, contents, true, "text/plain", testMetadata) + obj = PutTestContentsMetadata(ctx, t, f, &file, true, contents, true, "text/plain", testMetadata) fstest.CheckEntryMetadata(ctx, t, f, obj, testMetadata) do, objectHasSetMetadata := obj.(fs.SetMetadataer) require.True(t, objectHasSetMetadata)