Run 'black' on recent test case

The auto-builders pointed out that I neglected to run 'black' after a
rest testcase change.  This patch fixes the oversight.
This commit is contained in:
Tom Tromey
2023-09-08 13:06:47 -06:00
parent 92c713d7da
commit e9536c6dd5

View File

@@ -34,4 +34,5 @@ def str_lookup_function(val):
if val.type.code == gdb.TYPE_CODE_PTR and val.type.target().tag == "test":
return TestPrinter(val.dereference())
gdb.printing.register_pretty_printer(None, str_lookup_function)