From faaa946c83bfff8edbc3f3215cf926b611bc3826 Mon Sep 17 00:00:00 2001 From: rmarticedeno Date: Sat, 1 Feb 2025 17:36:49 -0500 Subject: [PATCH] remove extra check for pwd --- tests/ftp/tester.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ftp/tester.py b/tests/ftp/tester.py index 9567260..b1fba7e 100644 --- a/tests/ftp/tester.py +++ b/tests/ftp/tester.py @@ -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"),