diff options
Diffstat (limited to 'src/libcore/ptr.rs')
| -rw-r--r-- | src/libcore/ptr.rs | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/libcore/ptr.rs b/src/libcore/ptr.rs index 438e18d999b..acdf0bf0658 100644 --- a/src/libcore/ptr.rs +++ b/src/libcore/ptr.rs @@ -480,7 +480,7 @@ impl<T> Ord for *mut T { #[cfg(test)] pub mod ptr_tests { use super::*; - use realstd::prelude::*; + use prelude::*; use realstd::c_str::ToCStr; use mem; @@ -660,9 +660,6 @@ pub mod ptr_tests { let expected = expected_arr[ctr].with_ref(|buf| { str::raw::from_c_str(buf) }); - debug!( - "test_ptr_array_each_with_len e: {}, a: {}", - expected, actual); assert_eq!(actual, expected); ctr += 1; iteration_count += 1; @@ -696,9 +693,6 @@ pub mod ptr_tests { let expected = expected_arr[ctr].with_ref(|buf| { str::raw::from_c_str(buf) }); - debug!( - "test_ptr_array_each e: {}, a: {}", - expected, actual); assert_eq!(actual, expected); ctr += 1; iteration_count += 1; |
