Skip to content
Merged
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
6 changes: 3 additions & 3 deletions kmip/tests/unit/services/server/test_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -4587,14 +4587,14 @@ def test_locate_with_initial_date(self):
)
obj_a.initial_date = int(time.time())
obj_a_time_str = time.strftime(
"%a %b %d %H:%M:%S %Y",
"%a %b %-2d %H:%M:%S %Y",
time.gmtime(obj_a.initial_date)
)

time.sleep(2)
mid_time = int(time.time())
mid_time_str = time.strftime(
"%a %b %d %H:%M:%S %Y",
"%a %b %-2d %H:%M:%S %Y",
time.gmtime(mid_time)
)
time.sleep(2)
Expand All @@ -4607,7 +4607,7 @@ def test_locate_with_initial_date(self):
)
obj_b.initial_date = int(time.time())
obj_b_time_str = time.strftime(
"%a %b %d %H:%M:%S %Y",
"%a %b %-2d %H:%M:%S %Y",
time.gmtime(obj_b.initial_date)
)

Expand Down