Skip to content

Commit

Permalink
fix:CI 覆盖率
Browse files Browse the repository at this point in the history
  • Loading branch information
叶言 committed Dec 1, 2015
1 parent ce6640d commit d837d72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/qrcode-spec.js
Expand Up @@ -72,7 +72,7 @@ describe('qrcode', function() {
it('最长字符串', function() {
var s = '';
var t = '0123456789';
for(var i = 0; i < 295; i+=10){
for(var i = 0; i < 2950; i+=10){
s += t;
}
s+='012';
Expand All @@ -86,7 +86,7 @@ describe('qrcode', function() {
it('超过最长字符串容错处理,截取前2953个字符', function() {
var s = '';
var t = '01234567890123456789';
for(var i = 0; i < 150; i+=20){
for(var i = 0; i < 3000; i+=20){
s += t;
}
var qrnode = new qrcode({
Expand Down

0 comments on commit d837d72

Please sign in to comment.