diff --git a/packages/opencode/test/effect/instance-state.test.ts b/packages/opencode/test/effect/instance-state.test.ts
index b47b740cd4..d983de89a8 100644
--- a/packages/opencode/test/effect/instance-state.test.ts
+++ b/packages/opencode/test/effect/instance-state.test.ts
@@ -269,10 +269,7 @@ it.live("InstanceState correct after interleaved init and dispose", () =>
expect(a).toBe(one)
const [, b] = yield* Effect.all(
- [
- reloadInstance({ directory: one }),
- Test.use((svc) => svc.get()).pipe(provideInstanceEffect(two)),
- ],
+ [reloadInstance({ directory: one }), Test.use((svc) => svc.get()).pipe(provideInstanceEffect(two))],
{ concurrency: "unbounded" },
)
expect(b).toBe(two)
diff --git a/packages/opencode/test/fixture/fixture.ts b/packages/opencode/test/fixture/fixture.ts
index 9653e5888d..0ca559a2c6 100644
--- a/packages/opencode/test/fixture/fixture.ts
+++ b/packages/opencode/test/fixture/fixture.ts
@@ -18,9 +18,7 @@ import { TestLLMServer } from "../lib/llm-server"
const noopBootstrap = Layer.succeed(InstanceBootstrap.Service, InstanceBootstrap.Service.of({ run: Effect.void }))
export const testInstanceStoreLayer = InstanceStore.defaultLayer.pipe(Layer.provide(noopBootstrap))
-const testInstanceRuntime = ManagedRuntime.make(
- testInstanceStoreLayer.pipe(Layer.provideMerge(Observability.layer)),
-)
+const testInstanceRuntime = ManagedRuntime.make(testInstanceStoreLayer.pipe(Layer.provideMerge(Observability.layer)))
const runTestInstanceStore = (fn: (store: InstanceStore.Interface) => Effect.Effect) =>
testInstanceRuntime.runPromise(InstanceStore.Service.use(fn))
@@ -207,10 +205,7 @@ export const withTmpdirInstance =
Effect.gen(function* () {
const directory = yield* tmpdirScoped(options)
return yield* self.pipe(Effect.provideService(TestInstance, { directory }), provideInstanceEffect(directory))
- }).pipe(
- Effect.provide(testInstanceStoreLayer),
- Effect.provide(CrossSpawnSpawner.defaultLayer),
- )
+ }).pipe(Effect.provide(testInstanceStoreLayer), Effect.provide(CrossSpawnSpawner.defaultLayer))
export function provideTmpdirServer(
self: (input: { dir: string; llm: TestLLMServer["Service"] }) => Effect.Effect,