Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
SamDudley committed Mar 22, 2024
1 parent f48bbcf commit aa2987d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions end_of_month/test/test_end_of_month_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def test_end_of_month_mar(self):

class TestReadArchivedForecastTest:
@pytest.fixture(autouse=True)
def _setup(self):
def _setup(self, db):
self.archived_figure = [0 for _ in range(16)]
self.init_data = MonthlyFigureSetup()
self.init_data.setup_forecast()
Expand Down Expand Up @@ -333,7 +333,7 @@ def test_end_of_month_mar(self):

class TestReadArchivedBudgetTest:
@pytest.fixture(autouse=True)
def _setup(self):
def _setup(self, db):
self.archived_figure = [0 for _ in range(16)]
self.init_data = MonthlyFigureSetup()
self.init_data.setup_budget()
Expand Down
2 changes: 1 addition & 1 deletion end_of_month/test/test_outturn_variance.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

class TestReadMonthlyVarianceTest:
@pytest.fixture(autouse=True)
def _setup(self):
def _setup(self, db):
self.archived_figure = [0 for _ in range(16)]
self.init_data = MonthlyFigureSetup()
self.init_data.setup_forecast()
Expand Down

0 comments on commit aa2987d

Please sign in to comment.