update to filter_conditions; formatting for lines too long

This commit is contained in:
David Kennedy 2023-10-29 06:04:35 -04:00
parent 82772c633b
commit e6e6cfa24f
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B
2 changed files with 19 additions and 11 deletions

View file

@ -114,7 +114,8 @@ class ExportDataTest(TestCase):
# print(csv_content)
# self.maxDiff = None
# Normalize line endings and remove commas, spaces and leading/trailing whitespace
# Normalize line endings and remove commas,
# spaces and leading/trailing whitespace
csv_content = (
csv_content.replace(",,", "")
.replace(",", "")
@ -169,7 +170,8 @@ class ExportDataTest(TestCase):
"ddomain3.gov,federal,Armed Forces Retirement Home\n"
)
# Normalize line endings and remove commas, spaces and leading/trailing whitespace
# Normalize line endings and remove commas,
# spaces and leading/trailing whitespace
csv_content = (
csv_content.replace(",,", "")
.replace(",", "")