summaryrefslogtreecommitdiff
path: root/std/path/glob_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/path/glob_test.ts')
-rw-r--r--std/path/glob_test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/std/path/glob_test.ts b/std/path/glob_test.ts
index 8c49adeca..1ab3d9240 100644
--- a/std/path/glob_test.ts
+++ b/std/path/glob_test.ts
@@ -239,10 +239,10 @@ test({
},
});
-test(function normalizeGlobGlobstar(): void {
+test("normalizeGlobGlobstar", function (): void {
assertEquals(normalizeGlob(`**${SEP}..`, { globstar: true }), `**${SEP}..`);
});
-test(function joinGlobsGlobstar(): void {
+test("joinGlobsGlobstar", function (): void {
assertEquals(joinGlobs(["**", ".."], { globstar: true }), `**${SEP}..`);
});