Use assertIn instead of assertTrue

This commit is contained in:
XhmikosR 2022-03-07 09:08:23 +02:00 committed by GitHub
parent e6da3b0fbf
commit 177e9755a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1765,7 +1765,7 @@ class TestIsValidUserProvidedDomainFormat(BaseStdout):
output = sys.stdout.getvalue()
expected = "You didn't enter a domain. Try again."
self.assertTrue(expected in output)
self.assertIn(expected, output)
def test_invalid_domain(self):
expected = "Do not include www.domain.com or http(s)://domain.com. Try again."