Fixed QuestionDialog2 failure

This commit is contained in:
Doug Blank 2015-05-05 11:28:35 -04:00 committed by Ross Gammon
parent 710f7eab3c
commit b86ec4ffe9

View File

@ -46,9 +46,9 @@ class TestUser_prompt(unittest.TestCase):
def test_prompt_runs_QuestionDialog2(self):
with patch('gramps.gui.user.QuestionDialog2') as MockQD:
self.user.prompt(TestUser.TITLE, TestUser.MSG,
TestUser.ACCEPT, TestUser.REJECT)
TestUser.ACCEPT, TestUser.REJECT, None)
MockQD.assert_called_once_with(TestUser.TITLE, TestUser.MSG,
TestUser.ACCEPT, TestUser.REJECT)
TestUser.ACCEPT, TestUser.REJECT, None)
MockQD.return_value.run.assert_called_once_with()
# TODO test that run's return is the one returned by prompt()...