fixed test

This commit is contained in:
Andreas Preikschat 2013-05-11 19:24:03 +02:00
parent 53160fc539
commit 0122ac64f2
1 changed files with 2 additions and 1 deletions

View File

@ -49,9 +49,10 @@ class TestMainWindow(TestCase):
# GIVEN: Mocked widget.
mocked_widget = MagicMock()
self.main_window.media_tool_box.currentWidget.return_value = mocked_widget
self.main_window.show()
# WHEN: Press the shortcut.
QtTest.QTest.keyPress(self.main_window, QtCore.Qt.Key_F, QtCore.Qt.ControlModifier)
QtTest.QTest.keyPress(self.main_window, QtCore.Qt.Key_F, QtCore.Qt.ControlModifier, 100)
QtTest.QTest.keyRelease(self.main_window, QtCore.Qt.Key_F, QtCore.Qt.ControlModifier)
# THEN: The on_focus method should have been called.