@@ -406,9 +406,9 @@ void testMetrics_clientTimeout_grpc() throws Exception {
406406 // metrics
407407 RetrySettings zeroRetrySettings =
408408 RetrySettings .newBuilder ()
409- .setInitialRpcTimeout (org . threeten . bp .Duration .ofMillis (1 ))
410- .setMaxRpcTimeout (org . threeten . bp .Duration .ofMillis (1 ))
411- .setTotalTimeout (org . threeten . bp .Duration .ofMillis (1 ))
409+ .setInitialRpcTimeout (java . time .Duration .ofMillis (1 ))
410+ .setMaxRpcTimeout (java . time .Duration .ofMillis (1 ))
411+ .setTotalTimeout (java . time .Duration .ofMillis (1 ))
412412 .setMaxAttempts (1 )
413413 .build ();
414414
@@ -450,9 +450,9 @@ void testMetrics_clientTimeout_httpjson() throws Exception {
450450
451451 RetrySettings zeroRetrySettings =
452452 RetrySettings .newBuilder ()
453- .setInitialRpcTimeout (org . threeten . bp .Duration .ofMillis (1 ))
454- .setMaxRpcTimeout (org . threeten . bp .Duration .ofMillis (1 ))
455- .setTotalTimeout (org . threeten . bp .Duration .ofMillis (1 ))
453+ .setInitialRpcTimeout (java . time .Duration .ofMillis (1 ))
454+ .setMaxRpcTimeout (java . time .Duration .ofMillis (1 ))
455+ .setTotalTimeout (java . time .Duration .ofMillis (1 ))
456456 .setMaxAttempts (1 )
457457 .build ();
458458
@@ -494,9 +494,9 @@ void testMetrics_retryShouldResultInOneMetric_grpc() throws Exception {
494494
495495 RetrySettings retrySettings =
496496 RetrySettings .newBuilder ()
497- .setInitialRpcTimeout (org . threeten . bp .Duration .ofMillis (5000L ))
498- .setMaxRpcTimeout (org . threeten . bp .Duration .ofMillis (5000L ))
499- .setTotalTimeout (org . threeten . bp .Duration .ofMillis (5000L ))
497+ .setInitialRpcTimeout (java . time .Duration .ofMillis (5000L ))
498+ .setMaxRpcTimeout (java . time .Duration .ofMillis (5000L ))
499+ .setTotalTimeout (java . time .Duration .ofMillis (5000L ))
500500 .setMaxAttempts (3 )
501501 .build ();
502502
@@ -572,9 +572,9 @@ void testMetrics_retryShouldResultInOneMetric_httpjson() throws Exception {
572572
573573 RetrySettings retrySettings =
574574 RetrySettings .newBuilder ()
575- .setInitialRpcTimeout (org . threeten . bp .Duration .ofMillis (5000L ))
576- .setMaxRpcTimeout (org . threeten . bp .Duration .ofMillis (5000L ))
577- .setTotalTimeout (org . threeten . bp .Duration .ofMillis (5000L ))
575+ .setInitialRpcTimeout (java . time .Duration .ofMillis (5000L ))
576+ .setMaxRpcTimeout (java . time .Duration .ofMillis (5000L ))
577+ .setTotalTimeout (java . time .Duration .ofMillis (5000L ))
578578 .setMaxAttempts (3 )
579579 .build ();
580580
0 commit comments