diff options
author | Hans Bolinder <[email protected]> | 2013-03-06 08:48:03 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2013-03-18 16:26:34 +0100 |
commit | c1d0091cefb5d0b4c2984ec885576fbcb76dcb7d (patch) | |
tree | 4a04470930d59d03687f13d5cfe18ae3dec8c003 | |
parent | 887577cfaeee55461f1e8f7b4f9472cbca1d2a2e (diff) | |
download | otp-c1d0091cefb5d0b4c2984ec885576fbcb76dcb7d.tar.gz otp-c1d0091cefb5d0b4c2984ec885576fbcb76dcb7d.tar.bz2 otp-c1d0091cefb5d0b4c2984ec885576fbcb76dcb7d.zip |
Correct a disk_log testcase
-rw-r--r-- | lib/kernel/test/disk_log_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/kernel/test/disk_log_SUITE.erl b/lib/kernel/test/disk_log_SUITE.erl index 0f811b8f73..f55af1e354 100644 --- a/lib/kernel/test/disk_log_SUITE.erl +++ b/lib/kernel/test/disk_log_SUITE.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1997-2012. All Rights Reserved. +%% Copyright Ericsson AB 1997-2013. 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 @@ -3205,7 +3205,7 @@ many_users(Conf) when is_list(Conf) -> ?line true = lists:duplicate(NoClients, {error, {full,"log.LOG"}}) == C2, ?line true = length(T2) > 0, ?line {C3, T3} = many(Fun2, NoClients, N, wrap, internal, - {300*NoClients,20}, Dir), + {300*NoClients,200}, Dir), ?line true = lists:duplicate(NoClients, ok) == C3, ?line true = length(T3) == N*NoClients, ok. |