diff options
| -rw-r--r-- | tests/integration/test_upload.py | 4 | 
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's Testtrack</h1>" in result.text +    assert re.search("<h1>\\s*FoOoOo Bar's Testtrack", result.text)      # Step 4: Ensure the track is stored right      track = dbsession.execute(select(models.Track)).scalar_one()  | 
