diff options
| author | cainus <[email protected]> | 2013-03-28 01:02:32 -0700 |
|---|---|---|
| committer | cainus <[email protected]> | 2013-03-28 01:02:32 -0700 |
| commit | c98c47e249723571767ee49a7e6da6007c1ff4ec (patch) | |
| tree | 48f724bf74aab8bcdee5764c2dd4e4a5aca4822e | |
| parent | 67effe59fbaefa65e69f5326c8bcd867537aea00 (diff) | |
| download | node-coveralls-c98c47e249723571767ee49a7e6da6007c1ff4ec.tar.xz node-coveralls-c98c47e249723571767ee49a7e6da6007c1ff4ec.zip | |
fixed tests.
| -rw-r--r-- | test/convertLcovToCoveralls.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/convertLcovToCoveralls.js b/test/convertLcovToCoveralls.js index df8c5cf..bbe5f09 100644 --- a/test/convertLcovToCoveralls.js +++ b/test/convertLcovToCoveralls.js @@ -11,8 +11,8 @@ describe("convertLcovToCoveralls", function(){ var output = convertLcovToCoveralls(input, libpath); output.source_files[0].name.should.equal("index.js"); output.source_files[0].source.split("\n").length.should.equal(225); - output.source_files[0].coverage[55].should.equal(0); - output.source_files[0].coverage[61].should.equal(0); + output.source_files[0].coverage[54].should.equal(0); + output.source_files[0].coverage[60].should.equal(0); }); it ("should work with a relative path as well", function(){ |
