Skip to content

Commit dcf8b46

Browse files
committed
Remove test with StableRNG
1 parent d32b96d commit dcf8b46

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

Project.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,11 @@ uuid = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"
33
version = "0.5.14"
44

55
[compat]
6-
Random = "<0.0.1, 1"
7-
StableRNGs = "1"
86
Test = "<0.0.1, 1"
97
julia = "1.6"
108

119
[extras]
12-
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
13-
StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"
1410
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1511

1612
[targets]
17-
test = ["Random", "StableRNGs", "Test"]
13+
test = ["Test"]

test/utils.jl

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
using MacroTools: isdef, flatten, striplines, @qq
22

3-
import StableRNGs
4-
import Random
5-
63
@testset "animals" begin
74
@test MacroTools.animals isa Vector{Symbol}
85
@test length(MacroTools.animals) == 214
96
@test allunique(MacroTools.animals)
107
@test all(islowercase first string, MacroTools.animals)
11-
@test MacroTools.animals == Random.shuffle!(StableRNGs.StableRNG(1234), sort(MacroTools.animals))
8+
@test !issorted(MacroTools.animals)
129
end
1310

1411
@testset "utils" begin

0 commit comments

Comments
 (0)