diff --git a/tests/session/test_subscription.py b/tests/session/test_subscription.py index 30e384f4cf..f6094ef276 100644 --- a/tests/session/test_subscription.py +++ b/tests/session/test_subscription.py @@ -408,11 +408,15 @@ async def test_subscribeToMultipleChannels_eventsReceivedInProperOrder( # Empty string channel is considered as no channel provided. resp = await read_JSON_message(websocket) - assert { - "type": "event", - "method": "log.entryAdded", - "params": ANY_DICT - } == resp + if "channel" in resp: + # Chromedriver adds channel even if it is an empty string. + pytest.xfail("TODO: http://b/343698990") + else: + assert { + "type": "event", + "method": "log.entryAdded", + "params": ANY_DICT + } == resp resp = await read_JSON_message(websocket) assert {