Skip to content

Commit

Permalink
fix failing unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
duanefields committed Jun 7, 2016
1 parent e8adf5c commit 95bd0d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/import.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ exports.import_batch_integration = {
"import_batch didn't call send_request correct number of times before callback"
);
test.equals(
0, error_list.length,
null, error_list,
"import_batch returned errors in callback unexpectedly"
);
test.done();
Expand Down Expand Up @@ -227,7 +227,7 @@ exports.import_batch_integration = {
"import_batch didn't call send_request correct number of times before callback"
);
test.equals(
0, error_list.length,
null, error_list,
"import_batch returned errors in callback unexpectedly"
);
test.done();
Expand All @@ -246,7 +246,7 @@ exports.import_batch_integration = {
"import_batch didn't call send_request correct number of times before callback"
);
test.equals(
0, error_list.length,
null, error_list,
"import_batch returned errors in callback unexpectedly"
);
test.done();
Expand Down

0 comments on commit 95bd0d7

Please sign in to comment.