mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-28 17:32:38 +02:00
chore: update to flask 2.3 (#1244)
Co-authored-by: Alexis Métaireau <alexis@notmyidea.org>
This commit is contained in:
parent
c9a709953f
commit
ee7289f5d2
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
import datetime
|
import datetime
|
||||||
import re
|
import re
|
||||||
from urllib.parse import urlparse, urlunparse
|
from urllib.parse import unquote, urlparse, urlunparse
|
||||||
|
|
||||||
from flask import session, url_for
|
from flask import session, url_for
|
||||||
from libfaketime import fake_time
|
from libfaketime import fake_time
|
||||||
|
@ -587,7 +587,7 @@ class TestBudget(IhatemoneyTestCase):
|
||||||
|
|
||||||
# test the redirection to the authentication page when trying to access admin endpoints
|
# test the redirection to the authentication page when trying to access admin endpoints
|
||||||
resp = self.client.get("/create")
|
resp = self.client.get("/create")
|
||||||
assert '<a href="/admin?goto=%2Fcreate">' in resp.data.decode("utf-8")
|
assert "/admin?goto=/create" in unquote(resp.location)
|
||||||
|
|
||||||
# test right password
|
# test right password
|
||||||
resp = self.client.post(
|
resp = self.client.post(
|
||||||
|
|
Loading…
Reference in a new issue