aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/test
diff options
context:
space:
mode:
authorFredrik Gustafsson <[email protected]>2013-02-22 15:30:29 +0100
committerFredrik Gustafsson <[email protected]>2013-02-22 15:30:29 +0100
commit17231ca24cbf3b136301f1076bb94247344e9f35 (patch)
tree5ef0821c9294e8fbd40dab188980f5b8393116d3 /lib/inets/test
parentf1d328bdbc58e2ad0325c11edb3bfa0db50b84c3 (diff)
parentba1902911b675e1edf2e941a4df327f6e312b364 (diff)
downloadotp-17231ca24cbf3b136301f1076bb94247344e9f35.tar.gz
otp-17231ca24cbf3b136301f1076bb94247344e9f35.tar.bz2
otp-17231ca24cbf3b136301f1076bb94247344e9f35.zip
Merge branch 'sal/ftp/OTP-10886'
* sal/ftp/OTP-10886: Changed to correct errorcode in testcase Handle correctly the "No files found or file unavailable" error code.
Diffstat (limited to 'lib/inets/test')
-rw-r--r--lib/inets/test/ftp_format_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/inets/test/ftp_format_SUITE.erl b/lib/inets/test/ftp_format_SUITE.erl
index cbc1b04bbb..02b9000dd9 100644
--- a/lib/inets/test/ftp_format_SUITE.erl
+++ b/lib/inets/test/ftp_format_SUITE.erl
@@ -273,7 +273,7 @@ ftp_other_status_codes(Config) when is_list(Config) ->
%% 4XX
{trans_neg_compl, _ } = ftp_response:interpret("421 Foobar\r\n"),
{trans_neg_compl, _ } = ftp_response:interpret("426 Foobar\r\n"),
- {trans_neg_compl, _ } = ftp_response:interpret("450 Foobar\r\n"),
+ {enofile, _ } = ftp_response:interpret("450 Foobar\r\n"),
{trans_neg_compl, _ } = ftp_response:interpret("451 Foobar\r\n"),
{etnospc, _ } = ftp_response:interpret("452 Foobar\r\n"),