| ... | ... | @@ -1380,7 +1380,7 @@ test "build and call child_process" { |
| 1380 | 1380 | try testing.expectEqual(ret_val, .{ .Exited = 0 }); |
| 1381 | 1381 | } |
| 1382 | 1382 | |
| 1383 | | test "creating a child process with stdin/stdout behavior set to StdIo.Pipe" { |
| 1383 | test "creating a child process with stdin and stdout behavior set to StdIo.Pipe" { |
| 1384 | 1384 | if (builtin.os.tag == .wasi) return error.SkipZigTest; |
| 1385 | 1385 | const testing = std.testing; |
| 1386 | 1386 | const allocator = testing.allocator; |
| ... | ... | @@ -1420,8 +1420,6 @@ test "creating a child process with stdin/stdout behavior set to StdIo.Pipe" { |
| 1420 | 1420 | ; |
| 1421 | 1421 | try testing.expectEqualStrings(expected_program, out_bytes); |
| 1422 | 1422 | }, |
| 1423 | | else => { |
| 1424 | | try testing.expect(false); |
| 1425 | | } |
| 1423 | else => unreachable |
| 1426 | 1424 | } |
| 1427 | 1425 | } |