From 2c3cb1bf023858f10d0a66b4741a76245ddbe7e5 Mon Sep 17 00:00:00 2001 From: Sophist Date: Tue, 11 Jun 2013 16:19:22 +0100 Subject: [PATCH] Fix format test file --- test/test_formats.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/test_formats.py b/test/test_formats.py index b2ff0f885..ed3f53e74 100644 --- a/test/test_formats.py +++ b/test/test_formats.py @@ -26,12 +26,14 @@ settings = { class FakeTagger(QtCore.QObject): - file_state_changed = QtCore.pyqtSignal(int) + tagger_stats_changed = QtCore.pyqtSignal() def __init__(self): QtCore.QObject.__init__(self) QtCore.QObject.config = config QtCore.QObject.log = log + self.tagger_stats_changed.connect(self.emit) + def emit(self, *args): pass