diff options
author | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2023-02-17 22:11:14 +0000 |
---|---|---|
committer | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2023-02-18 01:58:05 +0000 |
commit | c8f4a03daceef4470ddbc34d5879ffd01588a116 (patch) | |
tree | b67cbca3c86b239e84e00b2ca5966e3c273ca18a /tests/test_config.py | |
parent | 8de6638697b8c785f8022e1f526b549e74d033d1 (diff) | |
download | sphinx-git-c8f4a03daceef4470ddbc34d5879ffd01588a116.tar.gz |
Fix COM812
Diffstat (limited to 'tests/test_config.py')
-rw-r--r-- | tests/test_config.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_config.py b/tests/test_config.py index b0e2112a5..900fc1984 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -344,7 +344,7 @@ def test_nitpick_ignore(app, status, warning): 'nitpick_ignore_regex': [ (r'py:.*', r'.*postfix'), (r'.*:class', r'prefix.*'), - ] + ], }) def test_nitpick_ignore_regex1(app, status, warning): app.builder.build_all() @@ -355,7 +355,7 @@ def test_nitpick_ignore_regex1(app, status, warning): 'nitpick_ignore_regex': [ (r'py:.*', r'prefix.*'), (r'.*:class', r'.*postfix'), - ] + ], }) def test_nitpick_ignore_regex2(app, status, warning): app.builder.build_all() @@ -372,7 +372,7 @@ def test_nitpick_ignore_regex2(app, status, warning): (r'.*', r'prefix'), (r'.*', r'postfix'), (r'.*', r''), - ] + ], }) def test_nitpick_ignore_regex_fullmatch(app, status, warning): app.builder.build_all() |