From b5a1e2b1eab0778e2aef1dd9a5e16026807c5eff Mon Sep 17 00:00:00 2001 From: uki00a Date: Sun, 15 Nov 2020 21:19:50 +0900 Subject: [PATCH] chore(tests): Change the import path from redis.ts to mod.ts (#156) --- tests/connection_test.ts | 2 +- tests/general_test.ts | 2 +- tests/stream_test.ts | 2 +- tests/test_util.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/connection_test.ts b/tests/connection_test.ts index 255329ae..c9eb72c6 100644 --- a/tests/connection_test.ts +++ b/tests/connection_test.ts @@ -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"; diff --git a/tests/general_test.ts b/tests/general_test.ts index d2ededc3..2ec5f830 100644 --- a/tests/general_test.ts +++ b/tests/general_test.ts @@ -1,4 +1,4 @@ -import { parseURL } from "../redis.ts"; +import { parseURL } from "../mod.ts"; import { ErrorReplyError } from "../errors.ts"; import { assert, diff --git a/tests/stream_test.ts b/tests/stream_test.ts index e51d1850..0e043e64 100644 --- a/tests/stream_test.ts +++ b/tests/stream_test.ts @@ -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 { diff --git a/tests/test_util.ts b/tests/test_util.ts index 9f19c8e0..1919f59e 100644 --- a/tests/test_util.ts +++ b/tests/test_util.ts @@ -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;