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 af2f212 commit 14863d5Copy full SHA for 14863d5
postgresql_commands/src/traits.rs
@@ -363,10 +363,7 @@ mod test {
363
command.args(["/C", "echo foo"]);
364
365
let (stdout, stderr) = command.execute()?;
366
- #[cfg(not(target_os = "windows"))]
367
assert!(stdout.starts_with("foo"));
368
- #[cfg(target_os = "windows")]
369
- assert!(stdout.is_empty());
370
assert!(stderr.is_empty());
371
Ok(())
372
}
0 commit comments