Update script

This commit is contained in:
zandercymatics 2023-11-07 17:31:54 -07:00
parent eca8852d00
commit ba9ba10131
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
4 changed files with 59 additions and 17 deletions

View file

@ -352,6 +352,8 @@ class TestMigrations(TestCase):
)
]
#TransitionDomain.objects.filter(domain_name = "fakewebsite3.gov")
# Afterwards, their values should be what we expect
all_transition_domains = TransitionDomain.objects.all()
for domain in all_transition_domains:
@ -433,6 +435,7 @@ class TestMigrations(TestCase):
expected.id = domain.id
expected.created_at = domain.created_at
expected.updated_at = domain.updated_at
self.assertEqual(domain, expected)
def test_transfer_transition_domains_to_domains(self):