From 5717e647edc281a5aa2a46df92e2cf29452ea25f Mon Sep 17 00:00:00 2001 From: Tomas Susanka Date: Fri, 31 Jan 2020 20:55:42 +0000 Subject: [PATCH] tests/device: remove test_expected_responses --- tests/device_tests/test_protect_call.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tests/device_tests/test_protect_call.py b/tests/device_tests/test_protect_call.py index edf8296ca1..15d2846805 100644 --- a/tests/device_tests/test_protect_call.py +++ b/tests/device_tests/test_protect_call.py @@ -31,15 +31,6 @@ class TestProtectCall: res = btc.get_address(client, "Testnet", [0]) assert res == "mndoQDWatQhfeQbprzZxD43mZ75Z94D6vz" - @pytest.mark.setup_client(pin="1234", passphrase=True) - def test_expected_responses(self, client): - with client: - # Scenario 4 - Received what expected - client.set_expected_responses( - [proto.PinMatrixRequest(), proto.PassphraseRequest(), proto.Address()] - ) - self._some_protected_call(client) - def test_no_protection(self, client): with client: assert client.debug.read_pin()[0] is None