From 3e1ed273be43ca50ada1ff7f664b9f48b379f364 Mon Sep 17 00:00:00 2001 From: Stewart Becker Date: Mon, 21 Apr 2014 19:20:06 +0100 Subject: [PATCH] Show calls to add_verse for debugging --- tests/helpers/songfileimport.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/helpers/songfileimport.py b/tests/helpers/songfileimport.py index cf0fbd487..0f97666ba 100644 --- a/tests/helpers/songfileimport.py +++ b/tests/helpers/songfileimport.py @@ -72,6 +72,7 @@ class SongImportTestHelper(TestCase): """ Clean up """ + print(str(self.mocked_add_verse.call_args_list)) self.add_copyright_patcher.stop() self.add_verse_patcher.stop() self.finish_patcher.stop()