From 48f0630dab8efcd6d355416321733e9beb21afc3 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Sat, 22 Aug 2026 14:59:38 -0400 Subject: [PATCH] =?UTF-8?q?test(coverage):=20the=20two-declaration=20floor?= =?UTF-8?q?=20check=20compares=20two=20multi-line=20rules=20=E2=80=94=20fo?= =?UTF-8?q?rmatting=20is=20part=20of=20the=20fingerprint,=20as=20before=20?= =?UTF-8?q?(#2903)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5 --- tests/test_pattern_coverage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_pattern_coverage.py b/tests/test_pattern_coverage.py index c2a6ae4..24bb0d5 100644 --- a/tests/test_pattern_coverage.py +++ b/tests/test_pattern_coverage.py @@ -493,7 +493,7 @@ def test_extract_definitions_fingerprints_each_block(): import hashlib assert e["a"].body_sha != e["b"].body_sha != e["c"].body_sha assert e["a"].body_sha != hashlib.sha1(b"").hexdigest()[:16] - two = ".a { color: red; margin: 0; }\n.b {\n color: red;\n margin: 0;\n}\n" + two = ".a {\n color: red;\n margin: 0;\n}\n.b {\n color: red;\n margin: 0;\n}\n" f = {x.name: x for x in extract_definitions(two)} assert f["a"].body_sha == f["b"].body_sha