diff options
author | Fredrik Gustafsson <[email protected]> | 2013-01-24 12:28:47 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2014-02-05 13:55:38 +0100 |
commit | 6a6653e1fa03d105fa66da54f7291dd592e6f203 (patch) | |
tree | b8a716cc5cbf9f68d6a7a6a71cd57d7ff7a4c2d8 | |
parent | d8795f7c4b55a9bd2a05719f0fa6297b733ee5ce (diff) | |
download | otp-6a6653e1fa03d105fa66da54f7291dd592e6f203.tar.gz otp-6a6653e1fa03d105fa66da54f7291dd592e6f203.tar.bz2 otp-6a6653e1fa03d105fa66da54f7291dd592e6f203.zip |
Changed to correct errorcode in testcase
-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"), |