Skip to content

Commit 3f21e30

Browse files
committed
Fix windows test
Signed-off-by: Spike Curtis <spike@coder.com>
1 parent 872e357 commit 3f21e30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pty/start_windows_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func TestStart(t *testing.T) {
3939
})
4040
t.Run("Kill", func(t *testing.T) {
4141
t.Parallel()
42-
_, ps := ptytest.Start(t, exec.Command("cmd.exe"))
42+
pty, ps := ptytest.Start(t, exec.Command("cmd.exe"))
4343
err := ps.Kill()
4444
assert.NoError(t, err)
4545
err = ps.Wait()

0 commit comments

Comments
 (0)