specify super

This commit is contained in:
Simon Gardling 2022-04-22 13:02:58 -04:00
parent 9c205fca8f
commit 61c26001b4

View File

@ -129,7 +129,7 @@ mod tests {
for (key, value) in values {
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()))
.for_each(|key| {
println!("{}", key);
if generate_hint(&key).is_none() {
if super::generate_hint(&key).is_none() {
println!("success: {}", key);
} else {
panic!("failed: {}", key);