fix(scripts): correct closure-size figure in regression-test comment

This commit is contained in:
Joseph Doherty
2026-08-12 16:37:22 -04:00
parent 431a5f6433
commit 089b16980f
@@ -129,7 +129,7 @@ public class CachingScriptMetadataResolverTests
var distinct = CompileAndCount("return string.Join(\",\", Enumerable.Range(1, 2)).Length;"); var distinct = CompileAndCount("return string.Join(\",\", Enumerable.Range(1, 2)).Length;");
Assert.True(first > 0, "expected the first compile to resolve the transitive closure through the resolver"); Assert.True(first > 0, "expected the first compile to resolve the transitive closure through the resolver");
Assert.Equal(0, repeat); // pre-fix: == first (~74) — one fresh native metadata copy per assembly per compile Assert.Equal(0, repeat); // pre-fix: == first (measured 20 for this test's reference set; ~74 on the real compile surfaces)
Assert.Equal(0, distinct); Assert.Equal(0, distinct);
} }