Skip to content

Commit

Permalink
Evade the new default schema type when testing the model
Browse files Browse the repository at this point in the history
  • Loading branch information
notheotherben committed Jun 18, 2015
1 parent f28acf7 commit 3df6c88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ describe("Model",() => {
it("should correctly set the schema",() => {
chai.expect(new Iridium.Model(core, createInstanceImplementation({
collection: 'test',
schema: { _id: false }
})).schema).to.eql({ _id: false });
schema: { _id: true }
})).schema).to.eql({ _id: true });
});
});

Expand Down

0 comments on commit 3df6c88

Please sign in to comment.