Skip to content

Commit

Permalink
test: add test for new line
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielaBreitman committed Aug 2, 2024
1 parent 8154953 commit b807871
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/test_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,9 @@ def test_cross_power_identity():
p, k = get_power(dx, pb.boxlength, b=1)
p_cross, k = get_power(dx, pb.boxlength, b=1, deltax2=dx)
assert np.all(np.isclose(p, p_cross))
p, k = get_power(dx, [1, 1], b=1)
p_cross, k = get_power(dx, [1, 1], b=1, deltax2=dx)
assert np.all(np.isclose(p, p_cross))


@pytest.mark.skip()
Expand Down

0 comments on commit b807871

Please sign in to comment.