aboutsummaryrefslogtreecommitdiff
path: root/tests/integration
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2023-08-30 19:52:42 +0200
committerDaniel Schadt <kingdread@gmx.de>2023-08-30 19:52:42 +0200
commit15c63fcf923a1a996fa9aa02c33eee6e68850e8f (patch)
treef9a77198078f1bbb09e0ef841814ee918ab10c9f /tests/integration
parent0d389ba5af89bad45bd786aad0ff05f405658d8a (diff)
downloadfietsboek-15c63fcf923a1a996fa9aa02c33eee6e68850e8f.tar.gz
fietsboek-15c63fcf923a1a996fa9aa02c33eee6e68850e8f.tar.bz2
fietsboek-15c63fcf923a1a996fa9aa02c33eee6e68850e8f.zip
fix upload test
The new favourite icon messes up the old HTML, so we need to adjust the test's expectations.
Diffstat (limited to 'tests/integration')
-rw-r--r--tests/integration/test_upload.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/integration/test_upload.py b/tests/integration/test_upload.py
index 454785f..f09b468 100644
--- a/tests/integration/test_upload.py
+++ b/tests/integration/test_upload.py
@@ -1,3 +1,5 @@
+import re
+
from sqlalchemy import select, func
from webtest import Upload
@@ -30,7 +32,7 @@ def test_upload(testapp, dbsession, route_path, logged_in):
]
result = finish_form.submit().maybe_follow()
- assert "<h1>FoOoOo Bar&#39;s Testtrack</h1>" in result.text
+ assert re.search("<h1>\\s*FoOoOo Bar&#39;s Testtrack", result.text)
# Step 4: Ensure the track is stored right
track = dbsession.execute(select(models.Track)).scalar_one()