diff --git a/changedetectionio/tests/util.py b/changedetectionio/tests/util.py index bf5305b1d5e..1478902824a 100644 --- a/changedetectionio/tests/util.py +++ b/changedetectionio/tests/util.py @@ -215,8 +215,8 @@ def test_body(): def test_method(): return request.method - # Where we POST to as a notification - @live_server.app.route('/test_notification_endpoint', methods=['POST', 'GET']) + # Where we POST to as a notification, also use a space here to test URL escaping is OK across all tests that use this. ( #2868 ) + @live_server.app.route('/test_notification endpoint', methods=['POST', 'GET']) def test_notification_endpoint(): with open("test-datastore/notification.txt", "wb") as f: # Debug method, dump all POST to file also, used to prove #65 diff --git a/requirements.txt b/requirements.txt index 354bc13e2d5..0bcb6552b2b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -35,7 +35,7 @@ dnspython==2.6.1 # related to eventlet fixes # jq not available on Windows so must be installed manually # Notification library -apprise==1.9.1 +apprise==1.9.2 # apprise mqtt https://github.com/dgtlmoon/changedetection.io/issues/315 # use any version other than 2.0.x due to https://github.com/eclipse/paho.mqtt.python/issues/814