From e0a375164c21f324d2e5059ed9793fbad4159af8 Mon Sep 17 00:00:00 2001 From: jbannon Date: Tue, 5 Apr 2022 00:29:50 +0000 Subject: [PATCH] black --- tests/unit/entries/test_entry_formatter.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/tests/unit/entries/test_entry_formatter.py b/tests/unit/entries/test_entry_formatter.py index 10712c99..8586b33b 100644 --- a/tests/unit/entries/test_entry_formatter.py +++ b/tests/unit/entries/test_entry_formatter.py @@ -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):