From a19deaf7e0560251678f7a6ada7fb4190ea3041a Mon Sep 17 00:00:00 2001 From: Andreas Perhab Date: Thu, 5 Dec 2024 13:36:53 +0100 Subject: [PATCH 1/2] [FIX] tests: remove unused six import --- tests/conftest.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 59fa8f3..0321495 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,7 +1,6 @@ import logging import socket from collections import OrderedDict -from six import python_2_unicode_compatible import pytest import pytz from mock import patch From f7e6e4c38a1a094239cd676e141f42b544ce1b7e Mon Sep 17 00:00:00 2001 From: Andreas Perhab Date: Thu, 5 Dec 2024 14:03:48 +0100 Subject: [PATCH 2/2] [FIX] tests: use timezone Etc/GMT-6 Antarctica/Vostock changed on 2023-12-18, https://timezonedb.com/time-zones/Antarctica/Vostok --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 0321495..aa3331a 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -18,7 +18,7 @@ def __str__(self): address = ('127.0.0.1', 514) -timezone = pytz.timezone('Antarctica/Vostok') +timezone = pytz.timezone('Etc/GMT-6') message = 'This is an interesting message' sd1 = {'my_sd_id1@32473': {'my_key1': 'my_value1'}}