diff options
| -rw-r--r-- | library/alloc/tests/sort/tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/tests/sort/tests.rs b/library/alloc/tests/sort/tests.rs index 206624e59ea..4cc79010e8f 100644 --- a/library/alloc/tests/sort/tests.rs +++ b/library/alloc/tests/sort/tests.rs @@ -33,7 +33,7 @@ fn check_is_sorted<T: Ord + Clone + Debug, S: Sort>(v: &mut [T]) { known_good_stable_sort::sort(known_good_sorted_vec.as_mut_slice()); if is_small_test { - eprintln!("Original: {:?}", v_orig); + eprintln!("Original: {:?}", v_orig); eprintln!("Expected: {:?}", known_good_sorted_vec); eprintln!("Got: {:?}", v); } else { |
