Skip to content

Commit c9faf83

Browse files
committed
DAPT-26 : convert explicit timing to integer
1 parent a09f051 commit c9faf83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/selenium_ui/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def wrapper(*args, **kwargs):
224224
timestamp = round(time() * 1000)
225225
if explicit_timing:
226226
jtl_file.write(
227-
f"{timestamp},{explicit_timing*1000},{interaction},,{error_msg},"
227+
f"{timestamp},{str(int(explicit_timing * 1000))},{interaction},,{error_msg},"
228228
f",{success},0,0,0,0,,0\n")
229229
else:
230230
jtl_file.write(

0 commit comments

Comments
 (0)