Skip to content

Commit 677280e

Browse files
committed
adjust tolerance to fix the error
1 parent f3f3a44 commit 677280e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/asyncio/gapic/test_method_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ async def test_wrap_method_with_overriding_timeout_as_a_number():
260260
actual_timeout = method.call_args[1]["timeout"]
261261
metadata = method.call_args[1]["metadata"]
262262
assert metadata == mock.ANY
263-
assert actual_timeout == pytest.approx(22, abs=0.01)
263+
assert actual_timeout == pytest.approx(22, abs=0.05)
264264

265265

266266
@pytest.mark.asyncio

0 commit comments

Comments
 (0)