(tmp: Path, max_l1: int = MAX_L1_ENTRIES)
| 31 | |
| 32 | |
| 33 | def _make_cache(tmp: Path, max_l1: int = MAX_L1_ENTRIES) -> IncrementalAstCache: |
| 34 | return IncrementalAstCache(cache_dir=tmp / "cache", max_l1_entries=max_l1) |
| 35 | |
| 36 | |
| 37 | # ── TestChunkIds ────────────────────────────────────────────────────────────── |
no test coverage detected