Skip to content

Commit

Permalink
fix PkgEval (#318)
Browse files Browse the repository at this point in the history
  • Loading branch information
Moelf authored Mar 17, 2024
1 parent 63c64cf commit cba9a03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -934,8 +934,8 @@ end
s1 = sum(t.nMuon)
s2 = sum(tt.nMuon)
@test s2 == 2*s1
alloc1 = @allocated sum(length, t.Muon_pt)
alloc2 = @allocated sum(evt->length(evt.Muon_pt), tt)
alloc1 = @allocated length.(t.Muon_pt)
alloc2 = @allocated length.(tt.Muon_pt)
@test alloc2 < 2.1 * alloc1
close(rootfile)
end
Expand Down

0 comments on commit cba9a03

Please sign in to comment.