Remove print

This commit is contained in:
zandercymatics 2024-05-09 09:23:41 -06:00
parent 8af7902939
commit 0ac79da907
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -697,7 +697,7 @@ class ExportDataTest(MockDb, 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()
print(f"what is the actual content {csv_content}")
self.assertEqual(csv_content, expected_content)