summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-12-06 17:18:10 -0500
committerRyan Dahl <ry@tinyclouds.org>2018-12-06 17:18:10 -0500
commitc5871cb996d42eec2453b86003f305ec62ee3e46 (patch)
tree96c7ff7367cdee024a67cb9f7fab85970e708c5f
parent17c255581dbeff6bad6fe385b6cdee174e3f93ae (diff)
Format
Original: https://github.com/denoland/deno_std/commit/f3bce9c7b8e75846c33d4b8672510092b92b3139
-rw-r--r--buffer_test.ts2
-rw-r--r--bufio_test.ts4
2 files changed, 3 insertions, 3 deletions
diff --git a/buffer_test.ts b/buffer_test.ts
index 9a71e80a3..1958f8e97 100644
--- a/buffer_test.ts
+++ b/buffer_test.ts
@@ -17,7 +17,7 @@ function init() {
if (testBytes == null) {
testBytes = new Uint8Array(N);
for (let i = 0; i < N; i++) {
- testBytes[i] = "a".charCodeAt(0) + i % 26;
+ testBytes[i] = "a".charCodeAt(0) + (i % 26);
}
const decoder = new TextDecoder();
testString = decoder.decode(testBytes);
diff --git a/bufio_test.ts b/bufio_test.ts
index 5f32500a7..fb5dc23e8 100644
--- a/bufio_test.ts
+++ b/bufio_test.ts
@@ -109,7 +109,7 @@ test(async function bufioBufReader() {
for (let i = 0; i < texts.length - 1; i++) {
texts[i] = str + "\n";
all += texts[i];
- str += String.fromCharCode(i % 26 + 97);
+ str += String.fromCharCode((i % 26) + 97);
}
texts[texts.length - 1] = all;
@@ -294,7 +294,7 @@ test(async function bufioWriter() {
const data = new Uint8Array(8192);
for (let i = 0; i < data.byteLength; i++) {
- data[i] = charCode(" ") + i % (charCode("~") - charCode(" "));
+ data[i] = charCode(" ") + (i % (charCode("~") - charCode(" ")));
}
const w = new Buffer();