Skip to content
This repository was archived by the owner on Feb 23, 2026. It is now read-only.

Commit 0e27513

Browse files
committed
Try to remove a round-off error causing a test mock failure
1 parent 9ebe274 commit 0e27513

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/unit/gapic/test_method.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,8 @@ def test_wrap_method_with_overriding_timeout_as_a_number():
198198
method, default_retry, default_timeout
199199
)
200200

201-
result = wrapped_method(timeout=22)
201+
specified_timeout = 22
202+
result = wrapped_method(timeout=specified_timeout)
202203

203204
assert result == 42
204205

0 commit comments

Comments
 (0)