diff options
author | Anders Svensson <[email protected]> | 2016-06-11 12:42:43 +0200 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2016-06-11 18:49:42 +0200 |
commit | c980e489d02417e1144d28958fe9abd4017f72a4 (patch) | |
tree | 0074bd849cc83e3f471cb0b89feae2d611ce6bc4 /lib/diameter/test/diameter_util.erl | |
parent | f027ac4d0f1d522e3b3d5c4695baf42a5cdd5330 (diff) | |
download | otp-c980e489d02417e1144d28958fe9abd4017f72a4.tar.gz otp-c980e489d02417e1144d28958fe9abd4017f72a4.tar.bz2 otp-c980e489d02417e1144d28958fe9abd4017f72a4.zip |
Use rand(3) instead of random(3)
The latter is deprecated in OTP 19.
Diffstat (limited to 'lib/diameter/test/diameter_util.erl')
-rw-r--r-- | lib/diameter/test/diameter_util.erl | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/lib/diameter/test/diameter_util.erl b/lib/diameter/test/diameter_util.erl index f26f1e999a..37fcbbc267 100644 --- a/lib/diameter/test/diameter_util.erl +++ b/lib/diameter/test/diameter_util.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2010-2015. All Rights Reserved. +%% Copyright Ericsson AB 2010-2016. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. @@ -31,7 +31,6 @@ fold/3, foldl/3, scramble/1, - seed/0, unique_string/0, have_sctp/0]). @@ -178,23 +177,15 @@ scramble(L) -> [[fun s/1, L]]). s(L) -> - random:seed(seed()), s([], L). s(Acc, []) -> Acc; s(Acc, L) -> - {H, [T|Rest]} = lists:split(random:uniform(length(L)) - 1, L), + {H, [T|Rest]} = lists:split(rand:uniform(length(L)) - 1, L), s([T|Acc], H ++ Rest). %% --------------------------------------------------------------------------- -%% seed/0 - -seed() -> - {_,T} = diameter_lib:seed(), - T. - -%% --------------------------------------------------------------------------- %% unique_string/0 unique_string() -> |