add delete

This commit is contained in:
zandercymatics 2024-09-13 14:36:15 -06:00
parent e078248e02
commit 897fd86e57
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -870,6 +870,7 @@ class TestPortfolio(WebTest):
# Check that the domain request no longer exists
self.assertFalse(DomainRequest.objects.filter(pk=domain_request.pk).exists())
domain_request.delete()
@less_console_noise_decorator
@override_flag("organization_feature", active=True)
@ -903,6 +904,7 @@ class TestPortfolio(WebTest):
# Check that the domain request still exists
self.assertTrue(DomainRequest.objects.filter(pk=domain_request.pk).exists())
domain_request.delete()
@less_console_noise_decorator
@override_flag("organization_feature", active=True)
@ -937,3 +939,4 @@ class TestPortfolio(WebTest):
# Check that the domain request still exists
self.assertTrue(DomainRequest.objects.filter(pk=domain_request.pk).exists())
domain_request.delete()