Skip to content

Commit

Permalink
Corrected a unit test.
Browse files Browse the repository at this point in the history
  • Loading branch information
dfahlander committed Apr 5, 2016
1 parent 9205691 commit 1da8fea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/tests-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -528,9 +528,9 @@ spawnedTest("bulkPut-non-inbound-autoincrement", function*(){
{ first: "Foo2", last: "BarC"},
{ first: "Foo2", last: "BarD"}
], [lastId - 3,
null,
void 0,
lastId - 1,
null]);
void 0]);
equal (newLastId, lastId + 2, "Should have incremented last ID twice now");
equal (yield db.folks.where('first').equals('Foo').count(), 2, "Should be 2 Foos now");
equal (yield db.folks.where('first').equals('Foo2').count(), 4, "Should be 4 Foo2s now");
Expand Down

0 comments on commit 1da8fea

Please sign in to comment.