Fix incorrect time format spec in iso_utc_timestamp.

Also add test for such errors in the future.
This commit is contained in:
tamasmeszaros 2019-10-07 08:56:54 +02:00
parent f1388fffba
commit f0d75eea0d
2 changed files with 19 additions and 6 deletions

View file

@ -46,7 +46,7 @@ time_t str2time(const std::string &str, TimeZone zone, TimeFormat fmt);
inline std::string iso_utc_timestamp(time_t t)
{
return time2str(t, TimeZone::utc, TimeFormat::gcode);
return time2str(t, TimeZone::utc, TimeFormat::iso8601Z);
}
inline std::string iso_utc_timestamp()