diff options
author | Ingela Anderton Andin <[email protected]> | 2015-07-01 15:43:58 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2015-07-01 15:43:58 +0200 |
commit | 85bf0f9627122416048e2fc9d102e76b84d36467 (patch) | |
tree | 0eb8e1062d88a990b800aeb8c33b2772c5a668e4 | |
parent | fcbf2e682cedebdf768dc90273889b1f8d4b2ce4 (diff) | |
download | otp-85bf0f9627122416048e2fc9d102e76b84d36467.tar.gz otp-85bf0f9627122416048e2fc9d102e76b84d36467.tar.bz2 otp-85bf0f9627122416048e2fc9d102e76b84d36467.zip |
ssh: Fix test case issue
The test case is not prepared to receive is_dir messages,
and the same line is commented out in 18.
-rw-r--r-- | lib/ssh/test/ssh_sftpd_erlclient_SUITE_data/ssh_sftpd_file_alt.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssh/test/ssh_sftpd_erlclient_SUITE_data/ssh_sftpd_file_alt.erl b/lib/ssh/test/ssh_sftpd_erlclient_SUITE_data/ssh_sftpd_file_alt.erl index 9e119c4929..5a141a9f78 100644 --- a/lib/ssh/test/ssh_sftpd_erlclient_SUITE_data/ssh_sftpd_file_alt.erl +++ b/lib/ssh/test/ssh_sftpd_erlclient_SUITE_data/ssh_sftpd_file_alt.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2007-2010. All Rights Reserved. +%% Copyright Ericsson AB 2007-2015. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -48,7 +48,7 @@ get_cwd(State) -> {file:get_cwd(), State}. is_dir(AbsPath, State) -> - sftpd_file_alt_tester ! alt_is_dir, + %sftpd_file_alt_tester ! alt_is_dir, {filelib:is_dir(AbsPath), State}. list_dir(AbsPath, State) -> |