Skip to content

Commit

Permalink
Fixed ResourceTester error
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrienCastex committed Jun 19, 2017
1 parent a58d38f commit 083a5c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/resource/std/resourceTester/Content.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function writeRead(callback) {
});
});
});
});
}, values.join('').length);
});
}
exports.writeRead = writeRead;
Expand Down Expand Up @@ -81,7 +81,7 @@ function size(callback) {
});
});
});
});
}, value.length);
});
}
exports.size = size;
4 changes: 2 additions & 2 deletions src/resource/std/resourceTester/Content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export function writeRead(callback : ResourceTesterTestCallback)
})
})
});
})
}, values.join('').length)
})
}
export function mimeType(callback : ResourceTesterTestCallback)
Expand Down Expand Up @@ -93,6 +93,6 @@ export function size(callback : ResourceTesterTestCallback)
})
})
});
})
}, value.length)
})
}

0 comments on commit 083a5c0

Please sign in to comment.