diff --git a/standardize_test_format/__init__.py b/standardize_test_format/__init__.py index f8c7587..a8ea8dc 100644 --- a/standardize_test_format/__init__.py +++ b/standardize_test_format/__init__.py @@ -81,8 +81,11 @@ def parse_display_name_to_description(text: str|None): if text is None: return '' - text = re.sub(r'"\s*\+\s*"', '', text).strip('"') - return text.strip() + text = text.strip() + text = re.sub(r'"\s*\+\s*"', '', text) + text = text.strip('"') + text = text.strip() + return text def replace_test_pattern(match: re.Match, with_javadoc: bool, with_display_name: bool) -> str: diff --git a/test/test_standardize.py b/test/test_standardize.py index 2172fd5..8c7c59b 100644 --- a/test/test_standardize.py +++ b/test/test_standardize.py @@ -92,6 +92,18 @@ package test; public void zkBinderContextImplPropagatesLotOfFieldsDirectlyFromTheUnderlyingZkBinderContext() """ +INPUT_5C = """ +package test; + +@Test +@DisplayName( + "ZkBinderContextImpl propagates a lot of " + + "fields directly from " + + "the underlying ZkBinderContext" +) +public void zkBinderContextImplPropagatesLotOfFieldsDirectlyFromTheUnderlyingZkBinderContext() +""" + OUTPUT_5 = """ package test; import org.junit.jupiter.api.DisplayName; @@ -119,3 +131,6 @@ def test_5(): def test_5b(): assert standardize_java_text(INPUT_5B.strip(),False,True) == OUTPUT_5.strip() + +def test_5c(): + assert standardize_java_text(INPUT_5C.strip(),False,True) == OUTPUT_5.strip()