From d3015400e68259aba83a3730c7668ccfd1670008 Mon Sep 17 00:00:00 2001 From: Volker Schukai <volker.schukai@schukai.com> Date: Mon, 23 Oct 2023 13:06:40 +0200 Subject: [PATCH] fix: ci pipeline --- runnable-sftp_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runnable-sftp_test.go b/runnable-sftp_test.go index 5cad56d..2772434 100644 --- a/runnable-sftp_test.go +++ b/runnable-sftp_test.go @@ -122,7 +122,7 @@ func TestSFTPCRunnerLocalToRemote(t *testing.T) { done := make(chan bool) go func() { - err = startSFTPTestDockerImageAndContainer(t, "portAsString, "", ctx) + err = startSFTPTestDockerImageAndContainer(t, portAsString, "", ctx) if err != nil { t.Errorf("Unexpected error: %v", err) cancel() @@ -227,7 +227,7 @@ func TestSFTPCRunnerRemoteToLocal(t *testing.T) { done := make(chan bool) go func() { - err = startSFTPTestDockerImageAndContainer(t, portAsString, tempSrcDir, ctx) + err = startSFTPTestDockerImageAndContainer(t, portAsString, tempSrcDir, ctx) if err != nil { t.Errorf("Unexpected error: %v", err) cancel() -- GitLab