Skip to content

Commit 0ed90f2

Browse files
committed
Increase tolerance on duration check
1 parent 7d9dcb1 commit 0ed90f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/transport/epics/pva/test_p4p.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -646,5 +646,5 @@ async def put_pvs():
646646
for put_call, expected_duration in enumerate([0.2, 0]):
647647
start, end = command_runs_for_a_while_times[put_call]
648648
assert (
649-
pytest.approx((end - start).total_seconds(), abs=0.05) == expected_duration
649+
pytest.approx((end - start).total_seconds(), abs=0.1) == expected_duration
650650
)

0 commit comments

Comments
 (0)