Skip to content

Commit f17e7ce

Browse files
committed
fixup! Fix another race
1 parent 23a6833 commit f17e7ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/ssh_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ func TestSSH(t *testing.T) {
261261
client, workspace, agentToken := setupWorkspaceForAgent(t, nil)
262262
_, _ = tGoContext(t, func(ctx context.Context) {
263263
// Run this async so the SSH command has to wait for
264-
// the build and agent to connect!
264+
// the build and agent to connect.
265265
agentClient := agentsdk.New(client.URL)
266266
agentClient.SetSessionToken(agentToken)
267267
agentCloser := agent.New(agent.Options{
@@ -714,7 +714,7 @@ type stdioConn struct {
714714
io.Writer
715715
}
716716

717-
func (c *stdioConn) Close() (err error) {
717+
func (*stdioConn) Close() (err error) {
718718
return nil
719719
}
720720

0 commit comments

Comments
 (0)