Skip to content

Commit 3e3ffe0

Browse files
committed
Fix QN tests
1 parent 12ec881 commit 3e3ffe0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test-qn.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ using Graphs: ne, nv
1010

1111
g2 = QualitativeNetworks.build_qn_grammar(Symbol[], Integer[])
1212

13-
@test isempty(setdiff(Set(g2.rules), Set(entities)))
14-
@test isempty(setdiff(Set(g2.rules), Set(constants)))
13+
@test isempty(intersect(Set(g2.rules), Set(entities)))
14+
@test isempty(intersect(Set(g2.rules), Set(constants)))
1515
end
1616

1717
@testset "QN Sampling" begin

0 commit comments

Comments
 (0)