Skip to content

Commit

Permalink
Fix lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
jlewi committed Nov 22, 2024
1 parent e932e42 commit ff937d5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions app/pkg/agent/agent_test.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
package agent

import (
"connectrpc.com/connect"
"context"
"crypto/tls"
"fmt"
"github.com/jlewi/foyle/app/pkg/runme/ulid"
"io"
"net"
"net/http"
Expand All @@ -15,6 +13,9 @@ import (
"testing"
"time"

"connectrpc.com/connect"
"github.com/jlewi/foyle/app/pkg/runme/ulid"

"github.com/google/go-cmp/cmp/cmpopts"

"github.com/google/go-cmp/cmp"
Expand Down Expand Up @@ -218,7 +219,9 @@ func Test_Streaming(t *testing.T) {
t.Fatalf("Error waiting for server; %v", err)
}
log.Info("Server started")
runClient(addr)
if err := runClient(addr); err != nil {
t.Fatalf("Error running client for addres %v; %v", addr, err)
}
}

func waitForServer(addr string) error {
Expand Down

0 comments on commit ff937d5

Please sign in to comment.