summaryrefslogtreecommitdiff
path: root/tests/pyreverse/test_printer.py
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2022-09-09 12:56:40 +0200
committerGitHub <noreply@github.com>2022-09-09 12:56:40 +0200
commit2b6bd64d43ed109b1ee15f0993c010660cf56b13 (patch)
tree0f8605ed4d6b2dc4d0d176a4761d6fdd6526eb4d /tests/pyreverse/test_printer.py
parent6bac42efacdf1c1777db2021ca6ceda89eb8f199 (diff)
downloadpylint-git-2b6bd64d43ed109b1ee15f0993c010660cf56b13.tar.gz
Finish some incomplete typing signatures (#7442)
Diffstat (limited to 'tests/pyreverse/test_printer.py')
-rw-r--r--tests/pyreverse/test_printer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pyreverse/test_printer.py b/tests/pyreverse/test_printer.py
index d6785940f..4248e8bae 100644
--- a/tests/pyreverse/test_printer.py
+++ b/tests/pyreverse/test_printer.py
@@ -39,7 +39,7 @@ def test_explicit_layout(
"layout, printer_class",
[(Layout.BOTTOM_TO_TOP, PlantUmlPrinter), (Layout.RIGHT_TO_LEFT, PlantUmlPrinter)],
)
-def test_unsupported_layout(layout: Layout, printer_class: type[Printer]):
+def test_unsupported_layout(layout: Layout, printer_class: type[Printer]) -> None:
with pytest.raises(ValueError):
printer_class(title="unittest", layout=layout)