priority_queue: fix test compilation

This commit is contained in:
Daniel Micay 2012-12-15 11:15:25 -05:00 committed by Brian Anderson
parent 04df723619
commit ab75d3937d
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ impl <T: Copy Ord> PriorityQueue<T> {
mod tests {
use sort::merge_sort;
use core::cmp::le;
use PriorityQueue::from_vec;
use priority_queue::PriorityQueue::from_vec;
#[test]
fn test_top_and_pop() {