Navigation Menu

Skip to content

Commit

Permalink
Fix assertion for delete batch
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Aug 9, 2012
1 parent 13645d3 commit 4e4f0a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/batch-processor.test.js
Expand Up @@ -98,7 +98,7 @@ suite('batch/processor/Processor (instance methods)', function() {
processor.loadSync(adddBatches);
var deleteBatches = fs.readFileSync(__dirname + '/fixture/companies/delete.sdf.json', 'UTF-8');
deleteBatches = JSON.parse(deleteBatches);
processor.loadSync(deleteBatches);
var result = processor.loadSync(deleteBatches);
assertSuccess(result, 0, 1, schemeDump + '\n' + deletedLoadDump);
});

Expand Down

0 comments on commit 4e4f0a8

Please sign in to comment.