We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12cd7a6 commit a4f3da9Copy full SHA for a4f3da9
tests/test_io/test_html.py
@@ -68,6 +68,6 @@ def test_cdn_integrity_hash_matches_bundled_content(fig1):
68
expected_hash = _generate_sri_hash(plotlyjs_content)
69
70
# Verify they match
71
- assert (
72
- extracted_hash == expected_hash
73
- ), f"Hash mismatch: expected {expected_hash}, got {extracted_hash}"
+ assert extracted_hash == expected_hash, (
+ f"Hash mismatch: expected {expected_hash}, got {extracted_hash}"
+ )
0 commit comments