From ad323a2665d7d195cd6080f1b191e290063f1b0e Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Tue, 22 Feb 2011 14:26:43 -0500 Subject: [PATCH] Use "127.0.0.1" instead of "localhost" which can be more fragile. (It's possible to have issues with "localhost", for example when there's something in a $LOCALDOMAIN environment variable, which made this test fail on certain machines.) original commit: 22afec432c5f0b9e4f4b4bba7b62e2d70c3a98bc --- collects/tests/net/ftp.rkt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/tests/net/ftp.rkt b/collects/tests/net/ftp.rkt index 5007eeb8a6..bb34481257 100644 --- a/collects/tests/net/ftp.rkt +++ b/collects/tests/net/ftp.rkt @@ -209,7 +209,7 @@ END pasv2-port-maj pasv2-port-min )))) - (define server "localhost") + (define server "127.0.0.1") (define port main-port) (define user "anonymous") (define passwd "nonny") @@ -255,4 +255,4 @@ END )))) -(tests) \ No newline at end of file +(tests)