Remove debug println in test_evict

The println's surrounding the final cache fill in test_evict that causes
PADDR_B to be evicted are not needed.
This commit is contained in:
Dan Robertson 2017-11-22 07:53:41 +00:00 committed by whitequark
parent ff530020dd
commit 308afc5a25
1 changed files with 0 additions and 2 deletions

View File

@ -219,9 +219,7 @@ mod test {
assert_eq!(cache.lookup_pure(&PADDR_B, 1000), Some(HADDR_B));
assert_eq!(cache.lookup_pure(&PADDR_D, 1000), None);
println!("{:?}", cache);
cache.fill(PADDR_D, HADDR_D, 300);
println!("{:?}", cache);
assert_eq!(cache.lookup_pure(&PADDR_B, 1000), None);
assert_eq!(cache.lookup_pure(&PADDR_D, 1000), Some(HADDR_D));
}