Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
maksim.khramtsov authored and tim-smart committed Aug 20, 2024
1 parent ac747a0 commit 7ab103a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/effect/test/Effect/do-notation.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ describe("do notation", () => {
})

describe("bindAll", () => {
describe("succeed", () => {
it("succeed", () => {
const getTest = <O extends Effect.All.Options>(options: O) =>
Effect.Do.pipe(
Effect.bind("x", () => Effect.succeed(2)),
Expand Down Expand Up @@ -76,7 +76,7 @@ describe("do notation", () => {
})
})

describe("with failure", () => {
it("with failure", () => {
const getTest = <O extends Effect.All.Options>(options: O) =>
Effect.Do.pipe(
Effect.bind("x", () => Effect.succeed(2)),
Expand Down

0 comments on commit 7ab103a

Please sign in to comment.