Skip to content

Commit 9001cf8

Browse files
1 parent 4eb9a79 commit 9001cf8

File tree

9 files changed

+11
-19
lines changed

9 files changed

+11
-19
lines changed

.denov

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.34.0
1+
v0.35.0

modules-lock.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"https://deno.land/std": {
3-
"version": "@v0.34.0",
3+
"version": "@v0.35.0",
44
"modules": [
55
"/util/async.ts",
66
"/testing/asserts.ts",
77
"/io/bufio.ts",
88
"/fmt/colors.ts"
99
]
1010
}
11-
}
11+
}

modules.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"https://deno.land/std": {
3-
"version": "@v0.34.0",
3+
"version": "@v0.35.0",
44
"modules": [
55
"/util/async.ts",
66
"/testing/asserts.ts",

pipeline_test.ts

+2-10
Original file line numberDiff line numberDiff line change
@@ -91,18 +91,10 @@ test("pipeline in concurrent", async () => {
9191
"OK", //set(a)
9292
"OK", //set(b)
9393
"OK", //set(c)
94-
[
95-
["status", "OK"],
96-
["status", "OK"],
97-
["status", "OK"]
98-
], //flush()
94+
[["status", "OK"], ["status", "OK"], ["status", "OK"]], //flush()
9995
"OK", // get(a)
10096
"OK", // get(b)
10197
"OK", //get(c)
102-
[
103-
["bulk", "a"],
104-
["bulk", "b"],
105-
["bulk", "c"]
106-
] //flush()
98+
[["bulk", "a"], ["bulk", "b"], ["bulk", "c"]] //flush()
10799
]);
108100
});

redis.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ class RedisImpl implements Redis {
526526
): Promise<BulkResult> {
527527
const [_, reply] = await this.executor.execRawReply(command, ...args);
528528
// Note: `reply != null` won't work when `strict` is false #50
529-
if (typeof reply !== "string" && typeof reply !== 'undefined') {
529+
if (typeof reply !== "string" && typeof reply !== "undefined") {
530530
throw new Error();
531531
}
532532
return reply;
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@v0.34.0/fmt/colors.ts";
1+
export * from "https://deno.land/std@v0.35.0/fmt/colors.ts";
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@v0.34.0/io/bufio.ts";
1+
export * from "https://deno.land/std@v0.35.0/io/bufio.ts";
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@v0.34.0/testing/asserts.ts";
1+
export * from "https://deno.land/std@v0.35.0/testing/asserts.ts";
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@v0.34.0/util/async.ts";
1+
export * from "https://deno.land/std@v0.35.0/util/async.ts";

0 commit comments

Comments
 (0)