From 749376645a64bd37fc545e137c8a68d1c96bb463 Mon Sep 17 00:00:00 2001 From: Nick White Date: Mon, 31 May 2021 13:27:52 +0100 Subject: Fix bug after changing pipeliner for tests, to ensure DeleteObjects is available to Pipeliner --- internal/pipeline/pipeline_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal') diff --git a/internal/pipeline/pipeline_test.go b/internal/pipeline/pipeline_test.go index 68039e1..55b93e7 100644 --- a/internal/pipeline/pipeline_test.go +++ b/internal/pipeline/pipeline_test.go @@ -113,7 +113,7 @@ func Test_download(t *testing.T) { t.Fatalf("Received a different error than was expected, expected one of: %v, got %v\nLog: %s", c.errs, err, slog.log) } case process := <-processchan: - expected := tempDir + "/" + c.process + expected := tempDir + "/" + c.process if expected != process { t.Fatalf("Received a different addition to the process channel than was expected, expected: %v, got %v\nLog: %s", expected, process, slog.log) } -- cgit v1.2.1-24-ge1ad