From 71e7c1902ba8759ac2e593b3683ffb186716ee71 Mon Sep 17 00:00:00 2001 From: Serghei Mihai Date: Thu, 18 Aug 2016 16:00:14 +0200 Subject: [PATCH] tests: fix unsubscription test (#12543) --- tests/test_emailing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_emailing.py b/tests/test_emailing.py index 09a234a..8447e5a 100644 --- a/tests/test_emailing.py +++ b/tests/test_emailing.py @@ -122,5 +122,5 @@ def test_unsubscription_link(app, categories, announces): assert unsubscription_link in mail.outbox[0].text mail.outbox = [] # make sure the uri schema is not in the page - resp = app.get(unsubscription_path) + resp = app.get(unsubscription_link) assert scheme not in resp.content -- 2.9.3