specify super
This commit is contained in:
parent
9c205fca8f
commit
61c26001b4
@ -129,7 +129,7 @@ mod tests {
|
|||||||
|
|
||||||
for (key, value) in values {
|
for (key, value) in values {
|
||||||
println!("{} + {:?}", key, value);
|
println!("{} + {:?}", key, value);
|
||||||
assert_eq!(generate_hint(key), &value);
|
assert_eq!(super::generate_hint(key), &value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -164,7 +164,7 @@ mod tests {
|
|||||||
.filter(|func| !SUPPORTED_FUNCTIONS.contains(&func.as_str()))
|
.filter(|func| !SUPPORTED_FUNCTIONS.contains(&func.as_str()))
|
||||||
.for_each(|key| {
|
.for_each(|key| {
|
||||||
println!("{}", key);
|
println!("{}", key);
|
||||||
if generate_hint(&key).is_none() {
|
if super::generate_hint(&key).is_none() {
|
||||||
println!("success: {}", key);
|
println!("success: {}", key);
|
||||||
} else {
|
} else {
|
||||||
panic!("failed: {}", key);
|
panic!("failed: {}", key);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user