mirror of
https://github.com/trezor/trezor-firmware.git
synced 2026-03-10 01:08:33 +01:00
12 lines
345 B
Python
12 lines
345 B
Python
import pytest
|
|
|
|
from trezorlib import ble
|
|
from trezorlib.debuglink import SessionDebugWrapper 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.ping("")
|