aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/sendfile_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sendfile_SUITE.erl b/test/sendfile_SUITE.erl
index fa8e843..ee16f26 100644
--- a/test/sendfile_SUITE.erl
+++ b/test/sendfile_SUITE.erl
@@ -41,7 +41,7 @@ groups() ->
init_per_suite(Config) ->
Filename = filename:join(config(priv_dir, Config), "sendfile"),
- Binary = crypto:rand_bytes(20 * 1024 * 1024),
+ Binary = crypto:strong_rand_bytes(20 * 1024 * 1024),
ok = file:write_file(Filename, Binary),
[{filename, Filename} | Config].