Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DeviceLibrary/DeviceLibrary.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def get_suite_start_time(self) -> Optional[datetime]:
return self.suite_start_time

@keyword("Get Unix Timestamp")
def get_unix_timestamp(self, milliseconds: bool = False) -> Union[int, float]:
def get_unix_timestamp(self, milliseconds: bool = True) -> Union[int, float]:
"""Get the unix timestamp of the device (number of seconds since 1970-01-01).
This returns the unix timestamp of the device under test, not the host where
the test is being called from.
Expand Down