Skip to content

Commit b220728

Browse files
committed
Add Random as test dependency
The TestExt extension is loaded when Random and Test are loaded, and is used in TS's tests. However, we forgot to load Random in the test suite. This accidentally worked before, because Random was in the sysimage, but this will not continue to be the case in the future. See the comments in PR 152
1 parent 28d6845 commit b220728

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Project.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name = "TranscodingStreams"
22
uuid = "3bb67fe8-82b1-5028-8e26-92a6c54297fa"
33
license = "MIT"
44
authors = ["Kenta Sato <[email protected]>"]
5-
version = "0.10.2"
5+
version = "0.10.3"
66

77
[deps]
88
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
@@ -22,6 +22,7 @@ julia = "1.6"
2222

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

2627
[targets]
27-
test = ["Test"]
28+
test = ["Test", "Random"]

test/runtests.jl

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using TranscodingStreams
2+
using Random
23
using Test
34

45
if VERSION v"1.1"

0 commit comments

Comments
 (0)