diff options
author | Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com> | 2022-02-10 19:30:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-10 19:30:15 +0100 |
commit | 595ec422d6f9bd32f42c356d2f316ec69e0f7bee (patch) | |
tree | 766a12ddd91b43e09f670f913a4069bc7dc82d57 /tests/unittest_reporting.py | |
parent | e3d5deca2886d9e2d5f2be2a252e39e02ae42b96 (diff) | |
download | pylint-git-595ec422d6f9bd32f42c356d2f316ec69e0f7bee.tar.gz |
Update ``pydocstringformatter`` to 0.4.0 (#5787)
Diffstat (limited to 'tests/unittest_reporting.py')
-rw-r--r-- | tests/unittest_reporting.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unittest_reporting.py b/tests/unittest_reporting.py index 1ee947759..d6cb18220 100644 --- a/tests/unittest_reporting.py +++ b/tests/unittest_reporting.py @@ -58,7 +58,7 @@ def test_template_option(linter): def test_template_option_default(linter) -> None: - """Test the default msg-template setting""" + """Test the default msg-template setting.""" output = StringIO() linter.reporter.out = output linter.open() @@ -72,7 +72,7 @@ def test_template_option_default(linter) -> None: def test_template_option_end_line(linter) -> None: - """Test the msg-template option with end_line and end_column""" + """Test the msg-template option with end_line and end_column.""" output = StringIO() linter.reporter.out = output linter.set_option( @@ -125,7 +125,7 @@ def test_template_option_non_existing(linter) -> None: def test_deprecation_set_output(recwarn): - """TODO remove in 3.0""" + """TODO remove in 3.0.""" reporter = BaseReporter() # noinspection PyDeprecation reporter.set_output(sys.stdout) |