Skip to content

Commit 61b3304

Browse files
Fix Python tests
1 parent 74b7e62 commit 61b3304

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pineappl_py/tests/test_fk_table.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ def test_fktable(
113113

114114
# Check that FK table is in the Evolution basis and rotate into PDG
115115
assert fk.pid_basis == PidBasis.Evol
116-
new_fk = fk.rotate_pid_basis(PidBasis.Pdg)
117-
assert new_fk.pid_basis == PidBasis.Pdg
116+
fk.rotate_pid_basis(PidBasis.Pdg)
117+
assert fk.pid_basis == PidBasis.Pdg
118118

119119
def test_unpolarized_convolution(
120120
self,

0 commit comments

Comments
 (0)