diff options
author | Daniel Schadt <kingdread@gmx.de> | 2023-05-25 20:35:56 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2023-05-25 20:59:28 +0200 |
commit | cd60935d777aee984224844badc7f260caa3bb46 (patch) | |
tree | 53fbf2394d1f5073968d280613c1913d00e22aa2 /tests/integration/test_smoke.py | |
parent | 2dd26937465eb359552c77fe82b25c4fc7cfe2f3 (diff) | |
download | fietsboek-cd60935d777aee984224844badc7f260caa3bb46.tar.gz fietsboek-cd60935d777aee984224844badc7f260caa3bb46.tar.bz2 fietsboek-cd60935d777aee984224844badc7f260caa3bb46.zip |
move "sort" button on home page up
This looks better than having the header line and the sort button below
each other.
Diffstat (limited to 'tests/integration/test_smoke.py')
-rw-r--r-- | tests/integration/test_smoke.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/test_smoke.py b/tests/integration/test_smoke.py index 5176e88..cead68d 100644 --- a/tests/integration/test_smoke.py +++ b/tests/integration/test_smoke.py @@ -1,7 +1,7 @@ def test_home(testapp): res = testapp.get("/") assert res.status_code == 200 - assert b'<h1>Home</h1>' in res.body + assert b'<h1 class="float-start">Home</h1>' in res.body def test_maintenance(testapp, data_manager): |