8000 Querying missing key will also be deprecated. · python/importlib_metadata@a54488d · GitHub
[go: up one dir, main page]

Skip to content

Commit a54488d

Browse files
committed
Querying missing key will also be deprecated.
1 parent 0460524 commit a54488d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ def test_entry_points_groups_getitem(self):
141141
with warnings.catch_warnings(record=True):
142142
entry_points()['entries'] == entry_points(group='entries')
143143

144-
with self.assertRaises(KeyError):
145-
entry_points()['missing']
144+
with self.assertRaises(KeyError):
145+
entry_points()['missing']
146146

147147
def test_entry_points_groups_get(self):
148148
"""

0 commit comments

Comments
 (0)
0