From e0398a982167b29d1eefea77b48bdfe09867562e Mon Sep 17 00:00:00 2001 From: Riku Virtanen Date: Mon, 8 Jan 2024 08:41:53 +0200 Subject: [PATCH] PR review changes --- .../Frends.FTP.DownloadFiles.Tests/DownloadFilesTests.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Frends.FTP.DownloadFiles/Frends.FTP.DownloadFiles.Tests/DownloadFilesTests.cs b/Frends.FTP.DownloadFiles/Frends.FTP.DownloadFiles.Tests/DownloadFilesTests.cs index 6b48b7d..7ca68fa 100644 --- a/Frends.FTP.DownloadFiles/Frends.FTP.DownloadFiles.Tests/DownloadFilesTests.cs +++ b/Frends.FTP.DownloadFiles/Frends.FTP.DownloadFiles.Tests/DownloadFilesTests.cs @@ -86,7 +86,6 @@ public void DownloadFTP_DestinationFileExists_ExceptionThrown() // Test and assert var ex = Assert.Throws(() => FTP.DownloadFiles(source, destination, connection, options, new Info(), new CancellationToken())); - Console.WriteLine(ex.Message); Assert.IsTrue(ex.Message.Contains($"Error: Unable to transfer file. Destination file already exists: {destination.FileName}")); }