Skip to content

Commit

Permalink
whatever
Browse files Browse the repository at this point in the history
  • Loading branch information
thofma committed May 1, 2024
1 parent 2e94578 commit 8a79454
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/Misc/MSet.jl
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@
m2 = multiset(fill(2,6))
m3 = multiset(Int[2,2,3,3,4,4])
m4 = multiset(Int[3,4,4])
@test isempty(inHecke.AbstractAlgebra.tersect(m1, m2, m3))
inHecke.AbstractAlgebra.tersect!(m3, m1, m4)
@test isempty(intersect(m1, m2, m3))
intersect!(m3, m1, m4)
@test length(m3) == 1
end

Expand All @@ -101,7 +101,7 @@ end

n = collect(M)[end]
@test union(m, n) == m
@test inHecke.AbstractAlgebra.tersect(m, n) == n
@test intersect(m, n) == n
end

@testset "Sub-set iterators" begin
Expand Down

0 comments on commit 8a79454

Please sign in to comment.