Skip to content

Commit 18d8523

Browse files
committed
update module used
1 parent 090c953 commit 18d8523

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_pensions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import numpy as np
22
import copy
33
import pytest
4-
from ogcore import tax
4+
from ogcore import pensions
55
from ogcore.parameters import Specifications
66

77

@@ -68,5 +68,5 @@ def test_replacement_rate_vals(n, w, factor, j, p_in, expected):
6868
p.e = np.tile(
6969
np.reshape(p.e, (1, p.e.shape[0], p.e.shape[1])), (p.T, 1, 1)
7070
)
71-
theta = tax.replacement_rate_vals(n, w, factor, j, p)
71+
theta = pensions.replacement_rate_vals(n, w, factor, j, p)
7272
assert np.allclose(theta, expected)

0 commit comments

Comments
 (0)