Skip to content

Commit be9c998

Browse files
committed
Add debug statements
1 parent 250fae2 commit be9c998

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(server_time)
186+
print(server_time.tm_zone)
187+
extra = time.localtime()
188+
print(extra)
189+
print(extra.tm_zone)
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)