Skip to content

Commit 64b8963

Browse files
committed
💪 Remove s from file names
To follow naming conventions with deno-denops-std.
1 parent bad30fe commit 64b8963

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
File renamed without changes.

errors_test.ts renamed to error_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
assertMatch,
66
} from "@std/assert";
77

8-
import { BatchError } from "./errors.ts";
8+
import { BatchError } from "./error.ts";
99

1010
Deno.test("BatchError", async (t) => {
1111
await t.step(".constructor()", async (t) => {
@@ -30,7 +30,7 @@ Deno.test("BatchError", async (t) => {
3030
await t.step("returns an error stack trace", () => {
3131
const actual = new BatchError("foo", ["bar", 1, true]);
3232
assert(actual.stack);
33-
assertMatch(actual.stack, /\bat .*errors_test\.ts:\d+:\d+\n/);
33+
assertMatch(actual.stack, /\bat .*error_test\.ts:\d+:\d+\n/);
3434
});
3535
});
3636
await t.step(".results getter", async (t) => {

mod.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@
2323
* @module
2424
*/
2525

26-
export * from "./errors.ts";
27-
export type * from "./types.ts";
26+
export * from "./error.ts";
27+
export type * from "./type.ts";

types.ts renamed to type.ts

File renamed without changes.

0 commit comments

Comments
 (0)