From cc1a8fd44a480c462af8e8f40e556f0af8cd6a1c Mon Sep 17 00:00:00 2001 From: David Kennedy Date: Mon, 6 Jan 2025 17:24:19 -0500 Subject: [PATCH] formatted tests for linter --- src/registrar/tests/test_admin.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/registrar/tests/test_admin.py b/src/registrar/tests/test_admin.py index c2a8b5e64..3195f8237 100644 --- a/src/registrar/tests/test_admin.py +++ b/src/registrar/tests/test_admin.py @@ -191,10 +191,10 @@ class TestDomainInvitationAdmin(TestCase): @less_console_noise_decorator def test_save_model_user_exists(self): """Test saving a domain invitation when the user exists. - + Should attempt to retrieve the domain invitation.""" # Create a user with the same email - User.objects.create_user(email="test@example.com", password="password", username="username") + User.objects.create_user(email="test@example.com", username="username") # Create a domain invitation instance invitation = DomainInvitation(email="test@example.com", domain=self.domain) @@ -219,7 +219,7 @@ class TestDomainInvitationAdmin(TestCase): @less_console_noise_decorator def test_save_model_user_does_not_exist(self): """Test saving a domain invitation when the user does not exist. - + Should not attempt to retrieve the domain invitation.""" # Create a domain invitation instance invitation = DomainInvitation(email="nonexistent@example.com", domain=self.domain)