Skip to content

Commit e70661a

Browse files
author
Christian Riedel
committed
fix typo in function name
1 parent f2cb173 commit e70661a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tests/test_check_jira_tag.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# noqa: D205,D208,D400
22
"""
3-
tests.test_check_jira_tag
4-
~~~~~~~~~~~~~~~~~~~~~~~~~
3+
tests.test_check_jira_tag
4+
~~~~~~~~~~~~~~~~~~~~~~~~~
55
6-
test check_jira_tag
6+
test check_jira_tag
77
8-
:copyright: (c) 2020 Christian Riedel
9-
:license: GPLv3, see LICENSE for more details
8+
:copyright: (c) 2020 Christian Riedel
9+
:license: GPLv3, see LICENSE for more details
1010
"""
11+
1112
# pylint: disable=W0613,W0621
1213
from pathlib import Path
1314

1415
import pytest
15-
1616
from click.testing import CliRunner
1717
from jira import JIRA # type: ignore[import]
1818
from jira import exceptions as jira_exc
@@ -219,7 +219,7 @@ def test_no_verify(mock_ini, mock_commit_msg_file, cli_runner):
219219
"message #TAG #TAG-123 #TAG",
220220
],
221221
)
222-
def test_all_tag_finds_are_search_for_fullmatch(
222+
def test_all_tag_finds_are_searched_for_fullmatch(
223223
commit_msg, mock_ini, mock_commit_msg_file, cli_runner
224224
):
225225
"""Assert next tag occurance is checked if prior one is missing number."""

0 commit comments

Comments
 (0)