From 4cf74bea44f7c0dd55433bdb2a53c936c1a11748 Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Sun, 6 Oct 2024 10:28:20 -0700 Subject: [PATCH] Fix logging statement in test run function (#1220) --- test/helpers/rest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/helpers/rest.py b/test/helpers/rest.py index 772618d1..65731c59 100644 --- a/test/helpers/rest.py +++ b/test/helpers/rest.py @@ -219,7 +219,7 @@ class AppriseURLTester: if not isinstance(obj, instance): print('%s instantiated %s (but expected %s)' % ( - url, type(instance), type(obj))) + url, type(obj), instance)) assert False if isinstance(obj, NotifyBase):