Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Mar 1, 2020
1 parent 4eb9a79 commit 9001cf8
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .denov
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.34.0
v0.35.0
4 changes: 2 additions & 2 deletions modules-lock.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"https://deno.land/std": {
"version": "@v0.34.0",
"version": "@v0.35.0",
"modules": [
"/util/async.ts",
"/testing/asserts.ts",
"/io/bufio.ts",
"/fmt/colors.ts"
]
}
}
}
2 changes: 1 addition & 1 deletion modules.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"https://deno.land/std": {
"version": "@v0.34.0",
"version": "@v0.35.0",
"modules": [
"/util/async.ts",
"/testing/asserts.ts",
Expand Down
12 changes: 2 additions & 10 deletions pipeline_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,18 +91,10 @@ test("pipeline in concurrent", async () => {
"OK", //set(a)
"OK", //set(b)
"OK", //set(c)
[
["status", "OK"],
["status", "OK"],
["status", "OK"]
], //flush()
[["status", "OK"], ["status", "OK"], ["status", "OK"]], //flush()
"OK", // get(a)
"OK", // get(b)
"OK", //get(c)
[
["bulk", "a"],
["bulk", "b"],
["bulk", "c"]
] //flush()
[["bulk", "a"], ["bulk", "b"], ["bulk", "c"]] //flush()
]);
});
2 changes: 1 addition & 1 deletion redis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ class RedisImpl implements Redis {
): Promise<BulkResult> {
const [_, reply] = await this.executor.execRawReply(command, ...args);
// Note: `reply != null` won't work when `strict` is false #50
if (typeof reply !== "string" && typeof reply !== 'undefined') {
if (typeof reply !== "string" && typeof reply !== "undefined") {
throw new Error();
}
return reply;
Expand Down
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/fmt/colors.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@v0.34.0/fmt/colors.ts";
export * from "https://deno.land/std@v0.35.0/fmt/colors.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/io/bufio.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@v0.34.0/io/bufio.ts";
export * from "https://deno.land/std@v0.35.0/io/bufio.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/testing/asserts.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@v0.34.0/testing/asserts.ts";
export * from "https://deno.land/std@v0.35.0/testing/asserts.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/util/async.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@v0.34.0/util/async.ts";
export * from "https://deno.land/std@v0.35.0/util/async.ts";

0 comments on commit 9001cf8

Please sign in to comment.