From c40ac51d525c6090e3058fd6ae026d32bb03a69f Mon Sep 17 00:00:00 2001 From: Kevin Deldycke Date: Wed, 3 Jul 2024 20:27:39 +0400 Subject: [PATCH] Update entry points --- tests/test_pygments.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_pygments.py b/tests/test_pygments.py index 185e332ff..336b66fbf 100644 --- a/tests/test_pygments.py +++ b/tests/test_pygments.py @@ -177,7 +177,7 @@ def test_formatter_entry_points(): entry_id = camel2under(name).replace("_", "-") entry_points[entry_id] = f"click_extra.pygments:{name}" - check_entry_points(entry_points, "tool", "poetry", "plugins", "pygments.formatters") + check_entry_points(entry_points, "project", "entry-points", "pygments.formatters") def test_filter_entry_points(): @@ -186,7 +186,7 @@ def test_filter_entry_points(): entry_id = camel2under(name).replace("_", "-") entry_points[entry_id] = f"click_extra.pygments:{name}" - check_entry_points(entry_points, "tool", "poetry", "plugins", "pygments.filters") + check_entry_points(entry_points, "project", "entry-points", "pygments.filters") def test_lexer_entry_points(): @@ -205,7 +205,7 @@ def test_lexer_entry_points(): class_path = f"click_extra.pygments:{ansi_lexer_id}" entry_points[entry_id] = class_path - check_entry_points(entry_points, "tool", "poetry", "plugins", "pygments.lexers") + check_entry_points(entry_points, "project", "entry-points", "pygments.lexers") def test_registered_formatters():