From 4f621b1da03c345d7af51dcbd8c5e82748f6560f Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Thu, 31 Jul 2014 00:54:41 +0200 Subject: [PATCH] fix test_recovery_device in test_protection_levels.py --- tests/test_protection_levels.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_protection_levels.py b/tests/test_protection_levels.py index 7a52eda..7c5e150 100644 --- a/tests/test_protection_levels.py +++ b/tests/test_protection_levels.py @@ -96,7 +96,7 @@ class TestProtectionLevels(common.TrezorTest): def test_recovery_device(self): with self.client: self.client.set_mnemonic(self.mnemonic12) - self.client.set_expected_responses([proto.WordRequest()] * int(12 * 1.5) + \ + self.client.set_expected_responses([proto.WordRequest()] * 24 + \ [proto.Success(), proto.Features()]) self.client.recovery_device(12, False, False, 'label', 'english')