Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 22c88f0

Browse files
committedSep 18, 2024·
log more time things
1 parent 3da7c5a commit 22c88f0

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎tests/test_client.py

+5
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,11 @@ def test_time_data(self):
182182
for time_data in server_time:
183183
self.assertIsNotNone(time_data)
184184
# Check that the week day was interpreted properly
185+
print("\ntime.timezone:", time.timezone)
186+
print("time.altzone:", time.altzone)
187+
print("time.daylight:", time.daylight)
188+
print("time.tzname:", time.tzname)
189+
print("server_time:", server_time)
185190
adjusted_time = time.localtime(time.mktime(server_time))
186191
self.assertEqual(server_time.tm_wday, adjusted_time.tm_wday)
187192

0 commit comments

Comments
 (0)
Please sign in to comment.