temp test changes

This commit is contained in:
matthewswspence 2024-12-05 10:58:12 -06:00
parent e8fdf0c5d3
commit 3f79b562bd
No known key found for this signature in database
GPG key ID: FB458202A7852BA4
2 changed files with 4 additions and 4 deletions

View file

@ -161,12 +161,12 @@ class Domain(TimeStampedModel, DomainHelper):
"""Returns a help message for a desired state. If none is found, an empty string is returned"""
help_texts = {
# For now, unknown has the same message as DNS_NEEDED
cls.UNKNOWN: ("Before this domain can be used, " "you'll need to add name server addresses."),
cls.DNS_NEEDED: ("Before this domain can be used, " "you'll need to add name server addresses."),
cls.UNKNOWN: ("Before this domain can be used, " "youll need to add name server addresses."),
cls.DNS_NEEDED: ("Before this domain can be used, " "youll need to add name server addresses."),
cls.READY: "This domain has name servers and is ready for use.",
cls.ON_HOLD: (
"This domain is administratively paused, "
"so it can't be edited and won't resolve in DNS. "
"so it cant be edited and wont resolve in DNS. "
"Contact help@get.gov for details."
),
cls.DELETED: ("This domain has been removed and " "is no longer registered to your organization."),

View file

@ -169,7 +169,7 @@ class HomeTests(TestWithUser):
self.assertContains(response, "You don't have any registered domains.")
self.assertContains(response, "Why don't I see my domain when I sign in to the registrar?")
@less_console_noise_decorator
# @less_console_noise_decorator
def test_state_help_text(self):
"""Tests if each domain state has help text"""