This commit is contained in:
jbannon 2022-04-05 00:29:50 +00:00
parent 836e186ab1
commit e0a375164c

View file

@ -8,12 +8,18 @@ from ytdl_subscribe.validators.exceptions import ValidationException
@pytest.fixture
def error_message_unequal_brackets_str():
return "Brackets are reserved for {variable_names} and should contain a single open and close bracket."
return (
"Brackets are reserved for {variable_names} and "
"should contain a single open and close bracket."
)
@pytest.fixture
def error_message_unequal_regex_matches_str():
return "{variable_names} should only contain lowercase letters and underscores with a single open and close bracket."
return (
"{variable_names} should only contain lowercase letters and "
"underscores with a single open and close bracket."
)
class TestEntryFormatter(object):