Skip to content

Commit

Permalink
change file name.
Browse files Browse the repository at this point in the history
  • Loading branch information
dojyorin committed Jan 21, 2024
1 parent 6293f21 commit 6abee7c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mod.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import "./test/byte.test.ts";
import "./test/crypto.test.ts";
import "./test/deep.test.ts";
import "./test/deflate.test.ts";
import "./test/env.deno.test.ts";
import "./test/envarg.deno.test.ts";
import "./test/fetch.test.ts";
import "./test/import.test.ts";
import "./test/json.deno.test.ts";
Expand Down
2 changes: 1 addition & 1 deletion mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export * from "./src/text.ts";
export * from "./src/time.ts";
export * from "./src/worker.ts";

export * from "./src/env.deno.ts";
export * from "./src/envarg.deno.ts";
export * from "./src/json.deno.ts";
export * from "./src/log.deno.ts";
export * from "./src/path.deno.ts";
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion test/env.deno.test.ts → test/envarg.deno.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {assertEquals} from "../deps.test.ts";
import {envGet} from "../src/env.deno.ts";
import {envGet} from "../src/envarg.deno.ts";

Deno.env.set("TEST_ENV_1", "abc");
Deno.env.set("TEST_ENV_2", "123");
Expand Down

0 comments on commit 6abee7c

Please sign in to comment.