Use humantime in tests
In various places in our test codes, we write times like time::SystemTime::UNIX_EPOCH + time::Duration::new(1668455932, 0)
. Instead we should just write the time we want in UTC, adding the dev-dependencies that we need to do that.
We can identify places to make this change by grepping for UNIX_EPOCH
.