aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorcainus <[email protected]>2013-06-02 20:35:14 -0700
committercainus <[email protected]>2013-06-02 20:35:14 -0700
commit01dba7323c708863fff540ef8c4d07e58b149322 (patch)
tree95002ae971d640632be27dc20261396ed57802d7 /test
parent0f5612ec5c9783f640894f547ce339c1dfd8c7c7 (diff)
downloadnode-coveralls-01dba7323c708863fff540ef8c4d07e58b149322.tar.xz
node-coveralls-01dba7323c708863fff540ef8c4d07e58b149322.zip
fix broken test.
Diffstat (limited to 'test')
-rw-r--r--test/convertLcovToCoveralls.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/convertLcovToCoveralls.js b/test/convertLcovToCoveralls.js
index 5483dc7..6883f64 100644
--- a/test/convertLcovToCoveralls.js
+++ b/test/convertLcovToCoveralls.js
@@ -11,7 +11,7 @@ describe("convertLcovToCoveralls", function(){
convertLcovToCoveralls(input, {filepath: libpath}, function(err, output){
should.not.exist(err);
output.source_files[0].name.should.equal("index.js");
- output.source_files[0].source.split("\n").length.should.equal(225);
+ output.source_files[0].source.split("\n").length.should.equal(173);
output.source_files[0].coverage[54].should.equal(0);
output.source_files[0].coverage[60].should.equal(0);
});
@@ -25,7 +25,7 @@ describe("convertLcovToCoveralls", function(){
convertLcovToCoveralls(input, {filepath: libpath}, function(err, output){
should.not.exist(err);
output.source_files[0].name.should.equal("index.js");
- output.source_files[0].source.split("\n").length.should.equal(225);
+ output.source_files[0].source.split("\n").length.should.equal(173);
});
});
});