Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
izaaklauer committed Dec 3, 2021
1 parent 805b097 commit 940ad21
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion internal/cli/base_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,9 @@ func Test_remoteOpPreferred(t *testing.T) {
}

// Register a remote runner
_, remoteRunnerClose := singleprocess.TestRunner(t, client, &pb.Runner{Odr: false})
_, remoteRunnerClose := singleprocess.TestRunner(t, client, &pb.Runner{
Kind: &pb.Runner_Remote_{Remote: &pb.Runner_Remote{}},
})
defer remoteRunnerClose()

// Register a non-default runner profile
Expand Down
1 change: 1 addition & 0 deletions internal/client/job.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ func (c *Project) queueAndStreamJob(
}

switch event := resp.Event.(type) {

case *pb.GetJobStreamResponse_Complete_:
completed = true

Expand Down

0 comments on commit 940ad21

Please sign in to comment.