Skip to content

Commit

Permalink
chore(tests): Change the import path from redis.ts to mod.ts (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
uki00a authored Nov 15, 2020
1 parent 21fc6e0 commit b5a1e2b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/connection_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { connect } from "../redis.ts";
import { connect } from "../mod.ts";
import { assertEquals } from "../vendor/https/deno.land/std/testing/asserts.ts";
import { newClient, startRedis, stopRedis, TestSuite } from "./test_util.ts";

Expand Down
2 changes: 1 addition & 1 deletion tests/general_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { parseURL } from "../redis.ts";
import { parseURL } from "../mod.ts";
import { ErrorReplyError } from "../errors.ts";
import {
assert,
Expand Down
2 changes: 1 addition & 1 deletion tests/stream_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ErrorReplyError } from "../errors.ts";
import { Redis } from "../redis.ts";
import { Redis } from "../mod.ts";
import { parseXId } from "../stream.ts";
import { delay } from "../vendor/https/deno.land/std/async/mod.ts";
import {
Expand Down
2 changes: 1 addition & 1 deletion tests/test_util.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { connect, Redis, RedisConnectOptions } from "../redis.ts";
import { connect, Redis, RedisConnectOptions } from "../mod.ts";
import { delay } from "../vendor/https/deno.land/std/async/mod.ts";

type TestFunc = () => void | Promise<void>;
Expand Down

0 comments on commit b5a1e2b

Please sign in to comment.