diff options
author | Hans Nilsson <[email protected]> | 2016-06-02 17:25:06 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2016-06-03 12:55:45 +0200 |
commit | 5c764919283a711474a11afe2b5bfeba49229a89 (patch) | |
tree | d27d31cc8e5859bb901eb3e199fb398474fc307c /lib/inets/test/ftp_format_SUITE.erl | |
parent | 27a1d233aca49b3bc4e277398c29eb43868aba15 (diff) | |
download | otp-5c764919283a711474a11afe2b5bfeba49229a89.tar.gz otp-5c764919283a711474a11afe2b5bfeba49229a89.tar.bz2 otp-5c764919283a711474a11afe2b5bfeba49229a89.zip |
ftp: fix error code errors incl extend test suites
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 2c17e2657c..a33b31f46f 100644 --- a/lib/inets/test/ftp_format_SUITE.erl +++ b/lib/inets/test/ftp_format_SUITE.erl @@ -253,7 +253,7 @@ ftp_other_status_codes(Config) when is_list(Config) -> {perm_neg_compl, _ } = ftp_response:interpret("501 Foobar\r\n"), {perm_neg_compl, _ } = ftp_response:interpret("503 Foobar\r\n"), {perm_neg_compl, _ } = ftp_response:interpret("504 Foobar\r\n"), - {perm_neg_compl, _ } = ftp_response:interpret("530 Foobar\r\n"), + {elogin, _ } = ftp_response:interpret("530 Foobar\r\n"), {perm_neg_compl, _ } = ftp_response:interpret("532 Foobar\r\n"), {epath, _ } = ftp_response:interpret("550 Foobar\r\n"), {epnospc, _ } = ftp_response:interpret("552 Foobar\r\n"), |