mirror of
https://github.com/trezor/trezor-firmware.git
synced 2026-03-04 06:25:20 +01:00
Co-authored-by: M1nd3r <petrsedlacek.km@seznam.cz> Co-authored-by: Roman Zeyde <roman.zeyde@satoshilabs.com> [no changelog]
12 lines
345 B
Python
12 lines
345 B
Python
import pytest
|
|
|
|
from trezorlib import ble
|
|
from trezorlib.debuglink import DebugSession as Session
|
|
|
|
|
|
@pytest.mark.models("t3w1")
|
|
def test_ble_unpair_all(session: Session):
|
|
ble.unpair(session, all=True)
|
|
# `Success` is sent before unpairing is done, so we'll send another command just to "flush" the last screen.
|
|
session.client.ping("")
|