Commit b0990946 authored by Adam Johnson's avatar Adam Johnson Committed by Brett Cannon

bpo-38839: Fix some unused functions in tests (GH-17189)

parent 5ffd6d26
......@@ -39,8 +39,6 @@ class LoggingSilencer(object):
self.logs.append((level, msg, args))
def get_logs(self, *levels):
def _format(msg, args):
return msg % args
return [msg % args for level, msg, args
in self.logs if level in levels]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment