Skip to content

Commit

Permalink
correct bigwig unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuels committed Jul 18, 2012
1 parent feb50d7 commit e2eca9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/js_tests/spec/BigWig.spec.js
Expand Up @@ -59,7 +59,7 @@ require(['JBrowse/Store/BigWig','JBrowse/Model/XHRBlob'], function( BigWig, XHRB
expect(stats.minVal).toEqual(1);
expect(stats.maxVal).toEqual(62066);
expect(stats.sumData).toEqual(16922295025);
expect(stats.sumSquared).toEqual(45582937421360);
expect(stats.sumSquares).toEqual(45582937421360);
expect(stats.stdDev).toEqual(555.4891087210976);
expect(stats.mean).toEqual(119.88945498666932);
});
Expand Down

0 comments on commit e2eca9f

Please sign in to comment.