diff options
author | Lars Thorsen <[email protected]> | 2016-05-17 12:29:28 +0200 |
---|---|---|
committer | Lars Thorsen <[email protected]> | 2016-05-18 15:23:08 +0200 |
commit | 121fc1f2bcc75f974d3dc4ff6a1af5f2b0cd0492 (patch) | |
tree | b80f97812a4c4db4a291b332457b17cd140d0213 /lib/inets/test/httpc_SUITE.erl | |
parent | 07906b7d9f1c2f72810d9ae12b38415cc3c1e86d (diff) | |
download | otp-121fc1f2bcc75f974d3dc4ff6a1af5f2b0cd0492.tar.gz otp-121fc1f2bcc75f974d3dc4ff6a1af5f2b0cd0492.tar.bz2 otp-121fc1f2bcc75f974d3dc4ff6a1af5f2b0cd0492.zip |
[inets] Remove calls to the inets_time_compat module
Diffstat (limited to 'lib/inets/test/httpc_SUITE.erl')
-rw-r--r-- | lib/inets/test/httpc_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/inets/test/httpc_SUITE.erl b/lib/inets/test/httpc_SUITE.erl index f9b3aa5b59..e6c4e48feb 100644 --- a/lib/inets/test/httpc_SUITE.erl +++ b/lib/inets/test/httpc_SUITE.erl @@ -2077,7 +2077,7 @@ run_clients(NumClients, ServerPort, SeqNumServer) -> wait4clients([], _Timeout) -> ok; wait4clients(Clients, Timeout) when Timeout > 0 -> - Time = inets_time_compat:monotonic_time(), + Time = erlang:monotonic_time(), receive {'DOWN', _MRef, process, Pid, normal} -> @@ -2177,7 +2177,7 @@ parse_connection_type(Request) -> end. set_random_seed() -> - Unique = inets_time_compat:unique_integer(), + Unique = erlang:unique_integer(), A = erlang:phash2([make_ref(), self(), Unique]), random:seed(A, A, A). |