@@ -621,10 +621,6 @@ async def test_read_rows_stream_failure_unauthorized_with_retries(
621621 for attempt in handler .completed_attempts :
622622 assert isinstance (attempt , CompletedAttemptMetric )
623623 assert attempt .end_status .name in ["PERMISSION_DENIED" , "DEADLINE_EXCEEDED" ]
624- assert (
625- attempt .gfe_latency_ns >= 0
626- and attempt .gfe_latency_ns < operation .duration_ns
627- )
628624
629625 @CrossSync .pytest
630626 async def test_read_rows_stream_failure_mid_stream (
@@ -1267,10 +1263,6 @@ async def test_bulk_mutate_rows_failure_unauthorized_with_retries(
12671263 # validate attempts
12681264 for attempt in handler .completed_attempts :
12691265 assert attempt .end_status .name in ["OK" , "DEADLINE_EXCEEDED" ]
1270- assert (
1271- attempt .gfe_latency_ns >= 0
1272- and attempt .gfe_latency_ns < operation .duration_ns
1273- )
12741266
12751267 @CrossSync .pytest
12761268 async def test_mutate_rows_batcher (self , table , temp_rows , handler , cluster_config ):
@@ -1659,10 +1651,6 @@ async def test_mutate_row_failure_unauthorized_with_retries(
16591651 # validate attempts
16601652 for attempt in handler .completed_attempts :
16611653 assert attempt .end_status .name in ["PERMISSION_DENIED" , "DEADLINE_EXCEEDED" ]
1662- assert (
1663- attempt .gfe_latency_ns >= 0
1664- and attempt .gfe_latency_ns < operation .duration_ns
1665- )
16661654
16671655 @CrossSync .pytest
16681656 async def test_sample_row_keys (self , table , temp_rows , handler , cluster_config ):
0 commit comments