diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-05-11 11:14:14 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-05-15 23:22:15 -0700 |
| commit | 2e2160b026d7a2b2d13c3a2b4d6aa073ab3ff43f (patch) | |
| tree | e4bebf36fa24fe0fe4dd6846291c59520ef1be28 /src/libcore/ptr.rs | |
| parent | d12a136b2247ab5cf5b32e44a890b3a871c0ce90 (diff) | |
| download | rust-2e2160b026d7a2b2d13c3a2b4d6aa073ab3ff43f.tar.gz rust-2e2160b026d7a2b2d13c3a2b4d6aa073ab3ff43f.zip | |
core: Update all tests for fmt movement
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; |
