diff --git a/descarteslabs/core/common/client/tests/test_attributes.py b/descarteslabs/core/common/client/tests/test_attributes.py index 94a42e65..02cee71d 100644 --- a/descarteslabs/core/common/client/tests/test_attributes.py +++ b/descarteslabs/core/common/client/tests/test_attributes.py @@ -170,7 +170,7 @@ class TzTest(Document): print(f"doc {type(doc)} {doc}") print(f"doc.date {type(doc.date)} {doc.date}") print(f"doc.date.tzinfo {type(doc.date.tzinfo)} {doc.date.tzinfo}") - print(f"pytz.timezone(MST)" {type(pytz.timezone('MST'))} {pytz.timezone('MST')}") + print(f"pytz.timezone(MST) {type(pytz.timezone('MST'))} {pytz.timezone('MST')}") assert doc.date.tzinfo == pytz.timezone("MST") assert doc.date.astimezone(tz=timezone.utc) == now.replace(tzinfo=timezone.utc)