base model uses `datetime.utcnow()` (current time in UTC): https://github.com/alexaorrico/AirBnB_clone_v2/blob/ce73eb11972da52cf02d5fcc2c6976450dcc529c/models/base_model.py#L47 but the unit tests use `datetime.now()` (current time in local timezone): https://github.com/alexaorrico/AirBnB_clone_v2/blob/ce73eb11972da52cf02d5fcc2c6976450dcc529c/tests/test_models/test_base_model.py#L85 so the test will fail if you're not in that timezone
base model uses
datetime.utcnow()(current time in UTC):AirBnB_clone_v2/models/base_model.py
Line 47 in ce73eb1
but the unit tests use
datetime.now()(current time in local timezone):AirBnB_clone_v2/tests/test_models/test_base_model.py
Line 85 in ce73eb1
so the test will fail if you're not in that timezone