Don't add multiple dots at end of line
This commit is contained in:
parent
ccbb18f275
commit
8cc861b6b1
|
@ -64,7 +64,8 @@ TEST_PATTERN: re.Pattern = re.compile(
|
||||||
re.IGNORECASE,
|
re.IGNORECASE,
|
||||||
)
|
)
|
||||||
|
|
||||||
END_SYMBOLS = '.?!'
|
END_SYMBOLS_SET = ('.','?','!')
|
||||||
|
END_SYMBOLS = ''.join(END_SYMBOLS_SET)
|
||||||
|
|
||||||
IGNORABLE_WORDS_IN_NAME = frozenset(
|
IGNORABLE_WORDS_IN_NAME = frozenset(
|
||||||
{
|
{
|
||||||
|
@ -97,7 +98,7 @@ def format_test_prefix(
|
||||||
if with_javadoc:
|
if with_javadoc:
|
||||||
str_builder += ['/** ']
|
str_builder += ['/** ']
|
||||||
str_builder += [description]
|
str_builder += [description]
|
||||||
if not description.endswith(END_SYMBOLS):
|
if not description.endswith(END_SYMBOLS_SET):
|
||||||
str_builder += ['.']
|
str_builder += ['.']
|
||||||
str_builder += [' */', '\n']
|
str_builder += [' */', '\n']
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user