From 7a1eb6b9b69e84782d8f905f5fe98e2c47881258 Mon Sep 17 00:00:00 2001 From: Andy Eschbacher Date: Wed, 25 May 2016 11:03:58 -0400 Subject: [PATCH] adding debug to mock plpy --- src/py/crankshaft/test/mock_plpy.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/py/crankshaft/test/mock_plpy.py b/src/py/crankshaft/test/mock_plpy.py index 63c88f6..3a3aaea 100644 --- a/src/py/crankshaft/test/mock_plpy.py +++ b/src/py/crankshaft/test/mock_plpy.py @@ -24,6 +24,9 @@ class MockPlPy: def notice(self, msg): self.notices.append(msg) + def debug(self, msg): + self.notices.append(msg) + def info(self, msg): self.infos.append(msg)