summaryrefslogtreecommitdiff
path: root/internal/pipeline/put_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/pipeline/put_test.go')
-rw-r--r--internal/pipeline/put_test.go7
1 files changed, 1 insertions, 6 deletions
diff --git a/internal/pipeline/put_test.go b/internal/pipeline/put_test.go
index 912a4ef..5fb5b43 100644
--- a/internal/pipeline/put_test.go
+++ b/internal/pipeline/put_test.go
@@ -92,18 +92,13 @@ func Test_UploadImages(t *testing.T) {
if err != nil {
t.Fatalf("Could not initialise %s connection: %v\nLog: %s", conn.name, err, slog.log)
}
- err = conn.c.TestInit()
- if err != nil {
- t.Fatalf("Failed in test initialisalisation for %s: %v\nLog: %s", conn.name, err, slog.log)
- }
slog.log = ""
- err = UploadImages("testdata/good", "good", conn.c, conn.c.TestStorageId())
+ err = UploadImages("testdata/good", "good", conn.c)
if err != nil {
t.Fatalf("Error in UploadImages for %s: %v\nLog: %s", conn.name, err, slog.log)
}
- // TODO: decide on whether to use TestStorageId or just the WIPStorageId as with other tests, and align other tests to this if needed
// TODO: download all files and test that they match
// TODO: remove test files from conn storage
})