"""E2E test: SSP Numeric Comparison pairing between Linux and ESP32.""" from __future__ import annotations import pytest from .conftest import requires_esp32 @requires_esp32 class TestSSPNumericComparison: """Both sides display a 6-digit passkey; both must confirm to pair.""" async def test_numeric_comparison_pairing(self, esp32_client): """Both sides display passkey, both must confirm.""" pytest.skip("Not yet implemented")