From df103ac7ad407d7fdd117e17975dca490d645c6a Mon Sep 17 00:00:00 2001 From: Emmanuel Ferdman Date: Mon, 4 Aug 2025 05:38:47 -0700 Subject: [PATCH] Fix test case to compare url ids Signed-off-by: Emmanuel Ferdman --- tests/test_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_api.py b/tests/test_api.py index 68edbbd5..a39e176f 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -1058,7 +1058,7 @@ def test_apprise_unique_id(): obj2 = Apprise.instantiate(url) obj2._url_identifier = ("123", b"\0", 42, object) assert obj2.url_id() is not None - assert obj2.url_id() == obj2.url_id() + assert obj1.url_id() == obj2.url_id() obj3 = Apprise.instantiate(url) obj3._url_identifier = {"123", b"\0", 42, object}