Skip to content

Commit

Permalink
Fix all the Python tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Radonirinaunimi committed Nov 20, 2024
1 parent f0fb8ec commit 9457aa0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/test_evolve.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,12 @@ class FakePine:
_evolve_info = FakeEvolInfo()

def orders(self):
return [pineappl.grid.Order(0, 0, 0, 0)]
return [pineappl.boc.Order(0, 0, 0, 0, 0)]

@property
def convolutions(self):
conv_type = pineappl.convolutions.ConvType(polarized=False, time_like=False)
return [pineappl.convolutions.Conv(conv_type=conv_type, pid=2212)]

def channels(self):
return [[(21, 21, 1)]]
Expand Down

0 comments on commit 9457aa0

Please sign in to comment.