Skip to content

Commit e036667

Browse files
committed
DAPT-26 : refactor explicit_timing
1 parent d85d9d1 commit e036667

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/selenium_ui/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,8 +232,9 @@ def wrapper(*args, **kwargs):
232232
with open(selenium_results_file, "a+") as jtl_file:
233233
timestamp = round(time() * 1000)
234234
if explicit_timing:
235+
timing = str(int(explicit_timing * 1000))
235236
jtl_file.write(
236-
f"{timestamp},{str(int(explicit_timing * 1000))},{interaction},,{error_msg},"
237+
f"{timestamp},{timing},{interaction},,{error_msg},"
237238
f",{success},0,0,0,0,,0\n")
238239
else:
239240
jtl_file.write(

0 commit comments

Comments
 (0)