We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3774aa commit 6a12a29Copy full SHA for 6a12a29
exercises/practice/poker/tests/poker.rs
@@ -14,7 +14,7 @@ fn hs_from<'a>(input: &[&'a str]) -> HashSet<&'a str> {
14
///
15
/// Note that the output can be in any order. Here, we use a HashSet to
16
/// abstract away the order of outputs.
17
-fn test<'a, 'b>(input: &[&'a str], expected: &[&'b str]) {
+fn test(input: &[&str], expected: &[&str]) {
18
assert_eq!(hs_from(&winning_hands(input)), hs_from(expected))
19
}
20
0 commit comments