Skip to content

Commit

Permalink
Merge pull request #6 from matcom/main
Browse files Browse the repository at this point in the history
remove extra check for pwd
  • Loading branch information
HadrianC-hub authored Feb 1, 2025
2 parents 875aa4e + faaa946 commit 7ceb728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ftp/tester.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def make_test(args, expeteted_output, error_msg):

tests = [
("-h localhost -p 21 -u user -w pass", ("220","230",), "Login Failed"),
("-h localhost -p 21 -u user -w pass -c PWD", ("150","257",), "/ directory listing failed"),
("-h localhost -p 21 -u user -w pass -c PWD", ("257",), "/ directory listing failed"),
("-h localhost -p 21 -u user -w pass -c CWD -a /directory", ("250",), "change directory failed"),
("-h localhost -p 21 -u user -w pass -c QUIT", ("221",), "exiting ftp server failed"),
("-h localhost -p 21 -u user -w pass -c RETR -a 2.txt" , ("150","226",), "could not retrieve 2.txt file"),
Expand Down

0 comments on commit 7ceb728

Please sign in to comment.