Skip to content

Commit

Permalink
Add missing test dependency on Random to Statistics (#32383)
Browse files Browse the repository at this point in the history
Statistics uses Random in its tests but doesn't declare it as a test
dependency in its Project.toml.

(cherry picked from commit f6049d6)
  • Loading branch information
ararslan authored and KristofferC committed Feb 20, 2020
1 parent 195b23e commit 56dc76d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion stdlib/Statistics/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"

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

[targets]
test = ["Test"]
test = ["Random", "Test"]

0 comments on commit 56dc76d

Please sign in to comment.