diff options
author | Hans Nilsson <[email protected]> | 2017-06-07 17:22:44 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2017-06-12 12:19:52 +0200 |
commit | 5bcd6af12b34db9d1976099d86fe3414b810aa3e (patch) | |
tree | f2b25962b8920355251dc78783bf0e0566c28421 /lib/ssh | |
parent | af4709bf61d80cd28d8cfbead2e1bfb1944fea55 (diff) | |
download | otp-5bcd6af12b34db9d1976099d86fe3414b810aa3e.tar.gz otp-5bcd6af12b34db9d1976099d86fe3414b810aa3e.tar.bz2 otp-5bcd6af12b34db9d1976099d86fe3414b810aa3e.zip |
ssh: fix sporadic error in ssh_protocol_SUITE
Diffstat (limited to 'lib/ssh')
-rw-r--r-- | lib/ssh/test/ssh_protocol_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/test/ssh_protocol_SUITE.erl b/lib/ssh/test/ssh_protocol_SUITE.erl index 0385e30ad1..0837fe7eaf 100644 --- a/lib/ssh/test/ssh_protocol_SUITE.erl +++ b/lib/ssh/test/ssh_protocol_SUITE.erl @@ -466,7 +466,7 @@ bad_long_service_name(Config) -> bad_very_long_service_name(Config) -> bad_service_name(Config, - lists:duplicate(4*?SSH_MAX_PACKET_SIZE, $a)). + lists:duplicate(?SSH_MAX_PACKET_SIZE+5, $a)). empty_service_name(Config) -> bad_service_name(Config, ""). |