testing/py: rename debug_print() to run_debug()

This commit is contained in:
Jussi Saurio 2025-05-12 10:52:13 +03:00
parent 9b96e2bcc3
commit 6926d7b931
3 changed files with 6 additions and 6 deletions

View file

@ -141,7 +141,7 @@ INSERT INTO t VALUES (zeroblob(1024 - 1), zeroblob(1024 - 2), zeroblob(1024 - 3)
f"Actual:\n{repr(actual)}"
)
def debug_print(self, sql: str):
def run_debug(self, sql: str):
console.debug(f"debugging: {sql}", _stack_offset=2)
actual = self.shell.execute(sql)
console.debug(f"OUTPUT:\n{repr(actual)}", _stack_offset=2)