diff --git a/tests/integration/async_push_test_client.py b/tests/integration/async_push_test_client.py index 2b23a4d39..7ad5fa099 100644 --- a/tests/integration/async_push_test_client.py +++ b/tests/integration/async_push_test_client.py @@ -102,7 +102,6 @@ async def hello(self, uaid: str | None = None, services: list[str] | None = None result = json.loads(reply) assert result["status"] == 200 - assert "-" not in result["uaid"] if self.uaid and self.uaid != result["uaid"]: # pragma: no cover log.debug(f"Mismatch on re-using uaid. Old: {self.uaid}, New: {result['uaid']}") self.channels = {} diff --git a/tests/integration/push_test_client.py b/tests/integration/push_test_client.py index d1d85a657..11f34f0b2 100644 --- a/tests/integration/push_test_client.py +++ b/tests/integration/push_test_client.py @@ -113,7 +113,6 @@ def hello(self, uaid: str | None = None, services: list[str] | None = None): log.debug(f"Recv: {reply!r} ({len(reply)})") result = json.loads(reply) assert result["status"] == 200 - assert "-" not in result["uaid"] if self.uaid and self.uaid != result["uaid"]: # pragma: no cover log.debug(f"Mismatch on re-using uaid. Old: {self.uaid}, New: {result['uaid']}") self.channels = {}