Skip to content

Commit

Permalink
chore: update to flask 2.3 (#1244)
Browse files Browse the repository at this point in the history
Co-authored-by: Alexis Métaireau <alexis@notmyidea.org>
  • Loading branch information
azmeuk and almet committed Nov 6, 2023
1 parent c9a7099 commit ee7289f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ihatemoney/tests/budget_test.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from collections import defaultdict
import datetime
import re
from urllib.parse import urlparse, urlunparse
from urllib.parse import unquote, urlparse, urlunparse

from flask import session, url_for
from libfaketime import fake_time
Expand Down Expand Up @@ -587,7 +587,7 @@ def test_admin_authentication(self):

# test the redirection to the authentication page when trying to access admin endpoints
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
resp = self.client.post(
Expand Down

0 comments on commit ee7289f

Please sign in to comment.