Mirror von
https://github.com/Chaoscaot/schemsearch
synchronisiert 2024-11-19 10:20:08 +01:00
Fix naming and Tests
Dieser Commit ist enthalten in:
Ursprung
a9a3e70aef
Commit
b32aac0aba
@ -40,7 +40,7 @@ impl FromStr for OutputSink {
|
|||||||
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
||||||
match s {
|
match s {
|
||||||
"std" => Ok(OutputSink::Stdout),
|
"std" => Ok(OutputSink::Stdout),
|
||||||
"err" => OK(OutputSink::Stderr),
|
"err" => Ok(OutputSink::Stderr),
|
||||||
_ => Ok(OutputSink::File(s.to_string()))
|
_ => Ok(OutputSink::File(s.to_string()))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -220,7 +220,7 @@ mod tests {
|
|||||||
|
|
||||||
println!("{:?}", matches);
|
println!("{:?}", matches);
|
||||||
assert_eq!(matches.len(), 1);
|
assert_eq!(matches.len(), 1);
|
||||||
assert_eq!(matches[0], (1, 0, 3, 1.0));
|
assert_eq!(matches[0], Match { x: 1, y: 0, z: 3, percent: 1.0});
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren