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

Commit efce813

Browse files
committed
fmt
1 parent 37b542e commit efce813

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

internal/cli/base_test.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,9 @@ func Test_remoteOpPreferred(t *testing.T) {
260260
}
261261

262262
// Register a remote runner
263-
_, remoteRunnerClose := singleprocess.TestRunner(t, client, &pb.Runner{Odr: false})
263+
_, remoteRunnerClose := singleprocess.TestRunner(t, client, &pb.Runner{
264+
Kind: &pb.Runner_Remote_{Remote: &pb.Runner_Remote{}},
265+
})
264266
defer remoteRunnerClose()
265267

266268
// Register a non-default runner profile

internal/client/job.go

+1
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@ func (c *Project) queueAndStreamJob(
188188
}
189189

190190
switch event := resp.Event.(type) {
191+
191192
case *pb.GetJobStreamResponse_Complete_:
192193
completed = true
193194

0 commit comments

Comments
 (0)