Skip to content

Commit f6049d6

Browse files
ararslanfredrikekre
authored andcommitted
Add missing test dependency on Random to Statistics (#32383)
Statistics uses Random in its tests but doesn't declare it as a test dependency in its Project.toml.
1 parent 77a2c1e commit f6049d6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

stdlib/Statistics/Project.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
66
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
77

88
[extras]
9+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
910
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1011

1112
[targets]
12-
test = ["Test"]
13+
test = ["Random", "Test"]

0 commit comments

Comments
 (0)