improved readability with linter

This commit is contained in:
David Kennedy 2024-12-30 09:22:22 -05:00
parent c8c80cc636
commit 0417478ad7
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B

View file

@ -794,7 +794,7 @@ class ExportDataTest(MockDbForIndividualTests, MockEppLib):
# spaces and leading/trailing whitespace
csv_content = csv_content.replace(",,", "").replace(",", "").replace(" ", "").replace("\r\n", "\n").strip()
expected_content = expected_content.replace(",,", "").replace(",", "").replace(" ", "").strip()
self.maxDiff=None
self.maxDiff = None
self.assertEqual(csv_content, expected_content)