From bc8ec77ce7e02bbde7e208210546206fa329ab29 Mon Sep 17 00:00:00 2001 From: Thiago Perrotta Date: Thu, 25 May 2023 15:02:17 +0200 Subject: [PATCH] bidi: remove tlsEnd from network.FetchTimingInfo tlsEnd never made it to the spec: https://w3c.github.io/webdriver-bidi/#type-network-FetchTimingInfo c.f. https://github.com/w3c/webdriver-bidi/pull/204: > tlsEnd: float this should be the same as connectEnd As it is a redundant param anyway, remove it from WPT. --- webdriver/tests/bidi/network/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/webdriver/tests/bidi/network/__init__.py b/webdriver/tests/bidi/network/__init__.py index ea7472cfd3d7b7..70f4eb2712f2db 100644 --- a/webdriver/tests/bidi/network/__init__.py +++ b/webdriver/tests/bidi/network/__init__.py @@ -45,7 +45,6 @@ def assert_timing_info(timing_info): "connectStart": any_int, "connectEnd": any_int, "tlsStart": any_int, - "tlsEnd": any_int, "requestStart": any_int, "responseStart": any_int, "responseEnd": any_int,