Skip to content

Commit a6ef9e9

Browse files
chore: generate
1 parent 6e09a1d commit a6ef9e9

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

packages/opencode/test/account/service.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ const login = () =>
4646

4747
const deviceTokenClient = (body: unknown, status = 400) =>
4848
HttpClient.make((req) =>
49-
Effect.succeed(req.url === "https://one.example.com/auth/device/token" ? json(req, body, status) : json(req, {}, 404)),
49+
Effect.succeed(
50+
req.url === "https://one.example.com/auth/device/token" ? json(req, body, status) : json(req, {}, 404),
51+
),
5052
)
5153

5254
const poll = (body: unknown, status = 400) =>

0 commit comments

Comments
 (0)