diff options
author | Fredrik Gustafsson <[email protected]> | 2013-01-24 12:28:47 +0100 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2013-01-24 12:28:47 +0100 |
commit | ba1902911b675e1edf2e941a4df327f6e312b364 (patch) | |
tree | 92a1c3aa9c041c5943b0bff364dbe0324e43be86 /lib/inets/test/ftp_format_SUITE.erl | |
parent | 6d250593da684c07edffaa1d6c17d511d9172302 (diff) | |
download | otp-ba1902911b675e1edf2e941a4df327f6e312b364.tar.gz otp-ba1902911b675e1edf2e941a4df327f6e312b364.tar.bz2 otp-ba1902911b675e1edf2e941a4df327f6e312b364.zip |
Changed to correct errorcode in testcase
Diffstat (limited to 'lib/inets/test/ftp_format_SUITE.erl')
-rw-r--r-- | lib/inets/test/ftp_format_SUITE.erl | 2 |
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"), |