1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-20 14:39:22 +00:00

tests/ui: remove unnecessary setup_client mark

This commit is contained in:
Tomas Susanka 2020-01-09 14:27:08 +00:00
parent 1103a14c48
commit 346e1e3ebc
2 changed files with 0 additions and 4 deletions

View File

@ -143,7 +143,6 @@ def test_set_remove_wipe_code(client):
assert client.features.wipe_code_protection is False
@pytest.mark.setup_client()
def test_set_wipe_code_mismatch(client):
# Let's set a wipe code.
def input_flow():
@ -202,7 +201,6 @@ def test_set_wipe_code_to_pin(client):
_check_wipe_code(client, PIN4, WIPE_CODE4)
@pytest.mark.setup_client()
def test_set_pin_to_wipe_code(client):
# Set wipe code.
with client:

View File

@ -96,7 +96,6 @@ def _check_no_pin(client):
assert client.features.pin_protection is False
@pytest.mark.setup_client()
def test_set_pin(client):
assert client.features.pin_protection is False
@ -162,7 +161,6 @@ def test_remove_pin(client):
_check_no_pin(client)
@pytest.mark.setup_client()
def test_set_failed(client):
assert client.features.pin_protection is False