mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-25 03:58:39 +02:00
Linter mc linterton
This commit is contained in:
parent
9a9c814269
commit
b7a5e0e763
3 changed files with 9 additions and 7 deletions
|
@ -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(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue