Linter mc linterton

This commit is contained in:
zandercymatics 2023-09-28 14:16:19 -06:00
parent 9a9c814269
commit b7a5e0e763
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
3 changed files with 9 additions and 7 deletions

View file

@ -98,7 +98,8 @@ class TestDomainAdmin(MockEppLib):
domain = create_ready_domain()
# Put in client hold
domain.place_client_hold()
self.client.login(username="staffuser", password="userpass")
p = "userpass"
self.client.login(username="staffuser", password=p)
# Ensure everything is displaying correctly
response = self.client.get(
@ -137,7 +138,8 @@ class TestDomainAdmin(MockEppLib):
And `state` is not set to `DELETED`
"""
domain = create_ready_domain()
self.client.login(username="staffuser", password="userpass")
p = "userpass"
self.client.login(username="staffuser", password=p)
# Ensure everything is displaying correctly
response = self.client.get(
@ -180,7 +182,8 @@ class TestDomainAdmin(MockEppLib):
domain = create_ready_domain()
# Put in client hold
domain.place_client_hold()
self.client.login(username="staffuser", password="userpass")
p = "userpass"
self.client.login(username="staffuser", password=p)
# Ensure everything is displaying correctly
response = self.client.get(