Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
mikearnaldi committed Jan 19, 2024
1 parent fa89588 commit a96652f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/effect/test/Context.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe("Context", () => {
it("Tag.toJson()", () => {
const json: any = A.toJSON()
expect(json["_id"]).toEqual("Tag")
expect(json["identifier"]).toEqual(undefined)
expect(json["identifier"]).toEqual("A")
expect(typeof json["stack"]).toEqual("string")
})

Expand Down Expand Up @@ -211,7 +211,7 @@ describe("Context", () => {
} catch (e) {
assert.match(
String(e),
new RegExp(/Error: Service not found: C \(defined at (.*)Context.test.ts:20:19\)/)
new RegExp(/Error: Service not found: C \(defined at (.*)Context.test.ts:20:26\)/)
)
}
}
Expand Down

0 comments on commit a96652f

Please sign in to comment.