Skip to content

Commit

Permalink
samwip
Browse files Browse the repository at this point in the history
  • Loading branch information
SamDudley committed Mar 22, 2024
1 parent d782b2d commit 816badb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 6 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 @@ -112,7 +112,9 @@ def test_end_of_month_mar(self):


class ReadArchivedForecastTest(TestCase):
archived_figure = []
@classmethod
def setUpTestData(cls):
cls.archived_figure = []

def setUp(self):
self.init_data = MonthlyFigureSetup()
Expand Down Expand Up @@ -334,7 +336,9 @@ def test_end_of_month_mar(self):


class ReadArchivedBudgetTest(TestCase):
archived_figure = []
@classmethod
def setUpTestData(cls):
cls.archived_figure = []

def setUp(self):
self.init_data = MonthlyFigureSetup()
Expand Down
4 changes: 3 additions & 1 deletion end_of_month/test/test_outturn_variance.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@


class ReadMonthlyVarianceTest(TestCase):
archived_figure = []
@classmethod
def setUpTestData(cls):
cls.archived_figure = []

def setUp(self):
self.init_data = MonthlyFigureSetup()
Expand Down

0 comments on commit 816badb

Please sign in to comment.