mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-06 11:13:21 +02:00
Fix existing tests
This commit is contained in:
parent
53d4b83b5e
commit
bfde3076b4
1 changed files with 9 additions and 7 deletions
|
@ -367,8 +367,8 @@ class ExportDataTest(MockDb, MockEppLib):
|
||||||
# Call the export functions
|
# Call the export functions
|
||||||
DomainGrowth.export_data_to_csv(
|
DomainGrowth.export_data_to_csv(
|
||||||
csv_file,
|
csv_file,
|
||||||
self.start_date.strftime("%Y-%m-%d"),
|
start_date=self.start_date.strftime("%Y-%m-%d"),
|
||||||
self.end_date.strftime("%Y-%m-%d"),
|
end_date=self.end_date.strftime("%Y-%m-%d"),
|
||||||
)
|
)
|
||||||
# Reset the CSV file's position to the beginning
|
# Reset the CSV file's position to the beginning
|
||||||
csv_file.seek(0)
|
csv_file.seek(0)
|
||||||
|
@ -409,8 +409,8 @@ class ExportDataTest(MockDb, MockEppLib):
|
||||||
# Call the export functions
|
# Call the export functions
|
||||||
DomainManaged.export_data_to_csv(
|
DomainManaged.export_data_to_csv(
|
||||||
csv_file,
|
csv_file,
|
||||||
self.start_date.strftime("%Y-%m-%d"),
|
start_date=self.start_date.strftime("%Y-%m-%d"),
|
||||||
self.end_date.strftime("%Y-%m-%d"),
|
end_date=self.end_date.strftime("%Y-%m-%d"),
|
||||||
)
|
)
|
||||||
# Reset the CSV file's position to the beginning
|
# Reset the CSV file's position to the beginning
|
||||||
csv_file.seek(0)
|
csv_file.seek(0)
|
||||||
|
@ -446,7 +446,9 @@ class ExportDataTest(MockDb, MockEppLib):
|
||||||
# Create a CSV file in memory
|
# Create a CSV file in memory
|
||||||
csv_file = StringIO()
|
csv_file = StringIO()
|
||||||
DomainUnmanaged.export_data_to_csv(
|
DomainUnmanaged.export_data_to_csv(
|
||||||
csv_file, self.start_date.strftime("%Y-%m-%d"), self.end_date.strftime("%Y-%m-%d")
|
csv_file,
|
||||||
|
start_date=self.start_date.strftime("%Y-%m-%d"),
|
||||||
|
end_date=self.end_date.strftime("%Y-%m-%d")
|
||||||
)
|
)
|
||||||
|
|
||||||
# Reset the CSV file's position to the beginning
|
# Reset the CSV file's position to the beginning
|
||||||
|
@ -493,8 +495,8 @@ class ExportDataTest(MockDb, MockEppLib):
|
||||||
# Call the export functions
|
# Call the export functions
|
||||||
DomainRequestGrowth.export_data_to_csv(
|
DomainRequestGrowth.export_data_to_csv(
|
||||||
csv_file,
|
csv_file,
|
||||||
self.start_date.strftime("%Y-%m-%d"),
|
start_date=self.start_date.strftime("%Y-%m-%d"),
|
||||||
self.end_date.strftime("%Y-%m-%d"),
|
end_date=self.end_date.strftime("%Y-%m-%d"),
|
||||||
)
|
)
|
||||||
# Reset the CSV file's position to the beginning
|
# Reset the CSV file's position to the beginning
|
||||||
csv_file.seek(0)
|
csv_file.seek(0)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue