aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/test/random_SUITE.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2015-03-26 15:32:26 +0100
committerBjörn Gustavsson <[email protected]>2015-04-10 12:33:24 +0200
commite13c6510763f24dec76b1ce66b86ebbf7a84816d (patch)
treed815dd782eb4827cdc98938b660a7498d166042a /lib/stdlib/test/random_SUITE.erl
parent0aaf8f67be3526656551d0011e8d8d6cf84e35fe (diff)
downloadotp-e13c6510763f24dec76b1ce66b86ebbf7a84816d.tar.gz
otp-e13c6510763f24dec76b1ce66b86ebbf7a84816d.tar.bz2
otp-e13c6510763f24dec76b1ce66b86ebbf7a84816d.zip
Eliminate use of deprecated now/0 for random number generation
Use erlang:timestamp/0 instead now/0 when seeding the random number generator.
Diffstat (limited to 'lib/stdlib/test/random_SUITE.erl')
-rw-r--r--lib/stdlib/test/random_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/test/random_SUITE.erl b/lib/stdlib/test/random_SUITE.erl
index ac9d1a6c06..22c0900651 100644
--- a/lib/stdlib/test/random_SUITE.erl
+++ b/lib/stdlib/test/random_SUITE.erl
@@ -82,7 +82,7 @@ seed(suite) ->
[];
seed(Config) when is_list(Config) ->
?line Self = self(),
- ?line Seed = {S1, S2, S3} = now(),
+ Seed = {S1, S2, S3} = erlang:timestamp(),
?line _ = spawn(fun() ->
random:seed(S1,S2,S3),
Rands = lists:foldl(fun