Skip to content
This repository has been archived by the owner on Feb 15, 2023. It is now read-only.

Commit

Permalink
Fix "type annotations needed" caused by introducing serde_json. Ref: s…
Browse files Browse the repository at this point in the history
  • Loading branch information
y-usuzumi committed Nov 23, 2022
1 parent 64506ab commit d0a4db4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion survive-the-course-rs/src/alg/quick_sort.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ mod test {
fn test_empty() {
let mut arr: Vec<i32> = vec![];
quick_sort(&mut arr);
assert_eq!(arr, vec![]);
assert_eq!(arr, vec![] as Vec<i32>);
}

#[test]
Expand Down

0 comments on commit d0a4db4

Please sign in to comment.