mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-20 09:46:06 +02:00
Remove max diff
This commit is contained in:
parent
4618f302f5
commit
8af7902939
2 changed files with 4 additions and 5 deletions
|
@ -2164,7 +2164,6 @@ class TestDomainRequestAdmin(MockEppLib):
|
||||||
self.assertContains(response, "Yes, select ineligible status")
|
self.assertContains(response, "Yes, select ineligible status")
|
||||||
|
|
||||||
def test_readonly_when_restricted_creator(self):
|
def test_readonly_when_restricted_creator(self):
|
||||||
self.maxDiff = None
|
|
||||||
with less_console_noise():
|
with less_console_noise():
|
||||||
domain_request = completed_domain_request(status=DomainRequest.DomainRequestStatus.IN_REVIEW)
|
domain_request = completed_domain_request(status=DomainRequest.DomainRequestStatus.IN_REVIEW)
|
||||||
with boto3_mocking.clients.handler_for("sesv2", self.mock_client):
|
with boto3_mocking.clients.handler_for("sesv2", self.mock_client):
|
||||||
|
|
|
@ -245,7 +245,7 @@ class ExportDataTest(MockDb, MockEppLib):
|
||||||
Domain.State.ON_HOLD,
|
Domain.State.ON_HOLD,
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
self.maxDiff = None
|
|
||||||
# Call the export functions
|
# Call the export functions
|
||||||
write_csv_for_domains(
|
write_csv_for_domains(
|
||||||
writer,
|
writer,
|
||||||
|
@ -474,7 +474,7 @@ class ExportDataTest(MockDb, MockEppLib):
|
||||||
|
|
||||||
# Read the content into a variable
|
# Read the content into a variable
|
||||||
csv_content = csv_file.read()
|
csv_content = csv_file.read()
|
||||||
self.maxDiff = None
|
|
||||||
# We expect READY domains first, created between day-2 and day+2, sorted by created_at then name
|
# We expect READY domains first, created between day-2 and day+2, sorted by created_at then name
|
||||||
# and DELETED domains deleted between day-2 and day+2, sorted by deleted then name
|
# and DELETED domains deleted between day-2 and day+2, sorted by deleted then name
|
||||||
expected_content = (
|
expected_content = (
|
||||||
|
@ -587,7 +587,7 @@ class ExportDataTest(MockDb, MockEppLib):
|
||||||
csv_file.seek(0)
|
csv_file.seek(0)
|
||||||
# Read the content into a variable
|
# Read the content into a variable
|
||||||
csv_content = csv_file.read()
|
csv_content = csv_file.read()
|
||||||
self.maxDiff = None
|
|
||||||
# We expect the READY domain names with the domain managers: Their counts, and listing at end_date.
|
# We expect the READY domain names with the domain managers: Their counts, and listing at end_date.
|
||||||
expected_content = (
|
expected_content = (
|
||||||
"MANAGED DOMAINS COUNTS AT START DATE\n"
|
"MANAGED DOMAINS COUNTS AT START DATE\n"
|
||||||
|
@ -630,7 +630,7 @@ class ExportDataTest(MockDb, MockEppLib):
|
||||||
csv_file.seek(0)
|
csv_file.seek(0)
|
||||||
# Read the content into a variable
|
# Read the content into a variable
|
||||||
csv_content = csv_file.read()
|
csv_content = csv_file.read()
|
||||||
self.maxDiff = None
|
|
||||||
# We expect the READY domain names with the domain managers: Their counts, and listing at end_date.
|
# We expect the READY domain names with the domain managers: Their counts, and listing at end_date.
|
||||||
expected_content = (
|
expected_content = (
|
||||||
"UNMANAGED DOMAINS AT START DATE\n"
|
"UNMANAGED DOMAINS AT START DATE\n"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue