From 82493fe61d61841b9c43d7d01cd5e36ee2bdb202 Mon Sep 17 00:00:00 2001 From: Tim Savannah Date: Mon, 19 Aug 2019 16:36:19 -0400 Subject: [PATCH] Fix missing newline in unit test TestUtils docstring --- tests/FuncTimeoutTests/TestUtils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/FuncTimeoutTests/TestUtils.py b/tests/FuncTimeoutTests/TestUtils.py index 238a0e8..fdb9181 100644 --- a/tests/FuncTimeoutTests/TestUtils.py +++ b/tests/FuncTimeoutTests/TestUtils.py @@ -160,6 +160,7 @@ def compareTimes(timeEnd, timeStart, cmpTime, roundTo=None, deltaFixed=.05, delt @param roundTo - Number of digits to round-off to @param deltaFixed Default .05, If provided and if difference is within this much, the two values are considered equal + @param deltaPct Default None, if provided and if difference is within this much, the two values are considered equal. 1 = 100%, .5 = 50% Example: if trying to determine if function ran for 2 seconds with an error of .05 seconds,