From 39f046f1f79b43bdddc450f048884b3dddba1ce3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mos=C3=A8=20Giordano?= <765740+giordano@users.noreply.github.com> Date: Mon, 30 Dec 2024 21:00:11 +0000 Subject: [PATCH] Update NEWS.md Co-authored-by: Ian Butterworth --- NEWS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 77c386c3c9d5f..2189b0e33112b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -181,7 +181,7 @@ Standard library changes #### Test * A failing `DefaultTestSet` now prints to screen the random number generator (RNG) of the failed test, to help reproducing a stochastic failure which only depends on the state of the RNG. - It is also possible seed a test set by passing the `seed` keyword argument to `@testset`: + It is also possible seed a test set by passing the `rng` keyword argument to `@testset`: ```julia using Test, Random @testset seed=Xoshiro(0x2e026445595ed28e, 0x07bb81ac4c54926d, 0x83d7d70843e8bad6, 0xdbef927d150af80b, 0xdbf91ddf2534f850) begin