Skip to content

Commit c3637c1

Browse files
committed
Fix failing tests
Signed-off-by: Gabriel Costa <gabrielcg@proton.me>
1 parent d39f395 commit c3637c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/mcpgateway/test_admin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21149,8 +21149,8 @@ def test_load_sri_hashes_excludes_tailwind_play_cdn(self):
2114921149
admin_mod.load_sri_hashes.cache_clear()
2115021150
hashes = admin_mod.load_sri_hashes()
2115121151
assert "tailwindcss" not in hashes
21152-
assert "htmx" in hashes
21153-
assert hashes["htmx"].startswith("sha384-")
21152+
assert "alpinejs" in hashes
21153+
assert hashes["alpinejs"].startswith("sha384-")
2115421154

2115521155

2115621156
class TestAdminCsrfProtection:

0 commit comments

Comments
 (0)