Skip to content

Commit

Permalink
clear info
Browse files Browse the repository at this point in the history
  • Loading branch information
Harsh Gupta committed Jan 18, 2017
1 parent f548f80 commit fcc2911
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions FluentFTP.Tests/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ class Program {


// SET THESE BEFORE RUNNING ANY TESTS!
static readonly string m_host = "spreadbs.ddns.net";
static readonly string m_user = "ftpuser";
static readonly string m_pass = "password";
static readonly string m_host = "";
static readonly string m_user = "";
static readonly string m_pass = "";


static void Main(string[] args) {
Expand Down Expand Up @@ -554,6 +554,9 @@ static void TestNameListingFTPS() {
}
}
}
static void OnValidateCertificate(FtpClient control, FtpSslValidationEventArgs e) {
e.Accept = true;
}


static FtpClient Connect() {
Expand Down Expand Up @@ -590,9 +593,6 @@ static FtpClient Connect() {
return cl;
}

static void OnValidateCertificate(FtpClient control, FtpSslValidationEventArgs e) {
e.Accept = true;
}

static void Upload(FtpClient cl) {
string root = @"..\..\..";
Expand Down

0 comments on commit fcc2911

Please sign in to comment.