test tweaks

This commit is contained in:
dgtlmoon
2026-05-25 16:34:58 +02:00
parent d9dacb245e
commit 3b7cc72440
2 changed files with 5 additions and 5 deletions
@@ -148,9 +148,9 @@ def test_check_access_control(app, client, live_server, measure_memory_usage, da
res = c.get(url_for("settings.settings_page"))
# Menu should be available now
assert b"SETTINGS" in res.data
assert b"IMPORT" in res.data
# Menu should be available now (Settings/Import moved to sidebar-nav.html as translated mixed-case strings)
assert b"Settings" in res.data
assert b"Import" in res.data
assert b"LOG OUT" in res.data
assert b"time_between_check-minutes" in res.data
assert b"fetch_backend" in res.data
+2 -2
View File
@@ -35,8 +35,8 @@ def test_check_basic_change_detection_functionality(client, live_server, measure
# Default no password set, this stuff should be always available.
assert b"SETTINGS" in res.data
assert b"IMPORT" in res.data
assert b"Settings" in res.data
assert b"Import" in res.data
#####################