Skip to content

Commit

Permalink
fix(tests): correct test that would not compile
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyJones committed Jul 26, 2019
1 parent 51d54ad commit 8cafbbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dsl/matchers.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -460,8 +460,8 @@ describe("Matcher", () => {
describe("when given a valid string", () => {
it("creates a valid matcher", () => {
expect(string("test")).to.be.an("object")
expect(integer()).to.be.an("object")
expect(integer("test").contents).to.equal("test")
expect(string()).to.be.an("object")
expect(string("test").contents).to.equal("test")
})
})
})
Expand Down

0 comments on commit 8cafbbf

Please sign in to comment.