Fix bug roundtripping datetime.time objects after midnight in eastern hemisphere timezones (#2417) (#2438)
* Fix bug roundtripping datetime.time objects after midnight in eastern hemisphere timezones (#2417)
* tests: check more timezones
* Fix review remarks: remove useless comment and skip setting TZ environment variable on Windows
diff --git a/tests/test_chrono.cpp b/tests/test_chrono.cpp
index 899d08d..1d79d4b 100644
--- a/tests/test_chrono.cpp
+++ b/tests/test_chrono.cpp
@@ -10,6 +10,7 @@
#include "pybind11_tests.h"
#include <pybind11/chrono.h>
+#include <chrono>
TEST_SUBMODULE(chrono, m) {
using system_time = std::chrono::system_clock::time_point;