Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cfoust committed Nov 18, 2023
1 parent d1757da commit eaa6b8b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pkg/cy/cy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ func (t *TestServer) Attach(rows, cols int) (Connection, *Client, error) {
}

conn.Send(P.HandshakeMessage{
TERM: "xterm-256color",
Env: map[string]string{
"TERM": "xterm-256color",
},
Size: geom.Size{
R: rows,
C: cols,
Expand Down Expand Up @@ -102,7 +104,9 @@ func TestHandshake(t *testing.T) {
require.NoError(t, err)

conn.Send(P.HandshakeMessage{
TERM: "xterm-256color",
Env: map[string]string{
"TERM": "xterm-256color",
},
Size: geom.Size{
R: 26,
C: 80,
Expand Down

0 comments on commit eaa6b8b

Please sign in to comment.