diff options
author | Lukas Larsson <[email protected]> | 2013-02-28 14:37:36 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2013-02-28 14:37:36 +0100 |
commit | e36ccb3df119abe8eb4a03217c8918e0ba92c282 (patch) | |
tree | 274e5e29202c68bd9ca219bcb9c7fa690a5c6d38 /erts/emulator/test/port_SUITE.erl | |
parent | 8deb96fb1d017307e22d2ab88968b9ef9f1b71d0 (diff) | |
download | otp-e36ccb3df119abe8eb4a03217c8918e0ba92c282.tar.gz otp-e36ccb3df119abe8eb4a03217c8918e0ba92c282.tar.bz2 otp-e36ccb3df119abe8eb4a03217c8918e0ba92c282.zip |
Decrease sleep timer
Diffstat (limited to 'erts/emulator/test/port_SUITE.erl')
-rw-r--r-- | erts/emulator/test/port_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/test/port_SUITE.erl b/erts/emulator/test/port_SUITE.erl index 13aa0f4c00..5c15e85296 100644 --- a/erts/emulator/test/port_SUITE.erl +++ b/erts/emulator/test/port_SUITE.erl @@ -670,7 +670,7 @@ close_ports([]) -> ok. open_ports(Name, Settings) -> - test_server:sleep(50), + test_server:sleep(5), case catch open_port(Name, Settings) of P when is_port(P) -> [P| open_ports(Name, Settings)]; |