diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-01-31 13:26:40 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-01-31 13:26:52 +0100 |
| commit | 8f37189d6fb2e3c75e4e6a168e1ae17c568fdc4c (patch) | |
| tree | 36d0201961766fa53d4193f2b91a0a27ac1826ad /src/layout | |
| parent | b1a82ae22d819eaa81a5e1d0ece58e6b4717dda5 (diff) | |
Fix incremental parsing bugs
Diffstat (limited to 'src/layout')
| -rw-r--r-- | src/layout/incremental.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/layout/incremental.rs b/src/layout/incremental.rs index f737a3ef..63915b53 100644 --- a/src/layout/incremental.rs +++ b/src/layout/incremental.rs @@ -408,7 +408,7 @@ mod tests { } #[test] - fn test_incremental_temperature() { + fn test_layout_incremental_temperature() { let mut cache = LayoutCache::new(EvictionPolicy::None, 20); let regions = zero_regions(); cache.policy = EvictionPolicy::None; @@ -447,7 +447,7 @@ mod tests { } #[test] - fn test_incremental_properties() { + fn test_layout_incremental_properties() { let mut cache = LayoutCache::new(EvictionPolicy::None, 20); cache.policy = EvictionPolicy::None; cache.insert(0, FramesEntry::new(empty_frames(), 1)); |
