Skip to content

Commit f85df93

Browse files
committed
Add another assertion to date_time
1 parent f4d0964 commit f85df93

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

ultimatepython/advanced/date_time.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ def main():
9090
utc_epoch_new_two = get_utc_now_as_epoch()
9191
utc_epoch_new_one = convert_dt_to_utc_epoch(utc_dt_new_one)
9292
assert utc_epoch_new_two > utc_epoch_new_one > naive_dt_epoch
93+
utc_dt_new_two = convert_utc_epoch_to_dt(utc_epoch_new_two)
94+
assert utc_dt_new_two > utc_dt_new_one > utc_dt
9395

9496

9597
if __name__ == "__main__":

0 commit comments

Comments
 (0)