Skip to content

Commit

Permalink
Fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
RikuVirtanen committed Dec 19, 2023
1 parent bc1ead4 commit 0245395
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ public void ListFiles_PasswordIsNULLAndUserIsNotNull_Test()
public void ListFiles_HostIsNULL_Test()
{
var connection = FtpHelper.GetFtpConnection();
connection.Address = string.Empty;
connection.Address = "";

var ex = Assert.ThrowsAsync<ArgumentException>(async () => await FTP.ListFiles(input, connection, default));
Assert.AreEqual("Unable to establish the socket: No such host is known.", ex.Message);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Version>2.0.0</Version>
<Version>1.0.2</Version>
<Authors>Frends</Authors>
<Copyright>Frends</Copyright>
<Company>Frends</Company>
Expand Down

0 comments on commit 0245395

Please sign in to comment.