Skip to content

Commit 14863d5

Browse files
committed
test: correct windows test failure
1 parent af2f212 commit 14863d5

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

postgresql_commands/src/traits.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -363,10 +363,7 @@ mod test {
363363
command.args(["/C", "echo foo"]);
364364

365365
let (stdout, stderr) = command.execute()?;
366-
#[cfg(not(target_os = "windows"))]
367366
assert!(stdout.starts_with("foo"));
368-
#[cfg(target_os = "windows")]
369-
assert!(stdout.is_empty());
370367
assert!(stderr.is_empty());
371368
Ok(())
372369
}

0 commit comments

Comments
 (0)