From 869ab21b953ffc17d858f183dafe5692d51545a8 Mon Sep 17 00:00:00 2001 From: Joel Bender Date: Wed, 11 May 2016 17:28:15 -0400 Subject: [PATCH] fix debugging output --- tests/test__template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test__template.py b/tests/test__template.py index 4a14615..29c73c9 100644 --- a/tests/test__template.py +++ b/tests/test__template.py @@ -47,7 +47,7 @@ class TestCaseTemplate(unittest.TestCase): if _debug: TestCaseTemplate._debug("teardown_class") def setup_method(self, method): - if _debug: TestCaseTemplate._debug("setup_module %r", method) + if _debug: TestCaseTemplate._debug("setup_method %r", method) def teardown_method(self, method): if _debug: TestCaseTemplate._debug("teardown_method %r", method)