From 5749a78d686732dd76065f444b633881197a406a Mon Sep 17 00:00:00 2001 From: Philipp Sauter Date: Fri, 22 Sep 2023 14:54:03 +0200 Subject: [PATCH] fix test --- internal/acctests/sos/download_test.go | 2 +- internal/acctests/sos/suite_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/acctests/sos/download_test.go b/internal/acctests/sos/download_test.go index 39ebc22c..dd395605 100644 --- a/internal/acctests/sos/download_test.go +++ b/internal/acctests/sos/download_test.go @@ -47,7 +47,7 @@ func (s *SOSSuite) TestDownloadSingleObject() { }, Commands: []string{ "exo storage upload {prepDir}file1.txt {bucket}", - "exo storage download -r {bucket} {downloadDir}/file1-new.txt", + "exo storage download {bucket}/file1.txt {downloadDir}/file1-new.txt", }, ExpectedDownloadFiles: LocalFiles{ "file1.txt": "this file should get written", diff --git a/internal/acctests/sos/suite_test.go b/internal/acctests/sos/suite_test.go index 9c41a2de..c8b35936 100644 --- a/internal/acctests/sos/suite_test.go +++ b/internal/acctests/sos/suite_test.go @@ -105,7 +105,7 @@ func getStr(a *string) string { return *a } -// TODO(sauterp) once deletion of versioned buckets, tests should handle deletions themselves. +// TODO(sauterp) once deletion of versioned buckets is implemented, tests should handle deletions themselves. func (s *SOSSuite) deleteBucket(bucketName string) { ctx := context.Background()