summaryrefslogtreecommitdiff
path: root/std/testing
diff options
context:
space:
mode:
Diffstat (limited to 'std/testing')
-rwxr-xr-xstd/testing/runner.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/testing/runner.ts b/std/testing/runner.ts
index 772e02724..65b7be66d 100755
--- a/std/testing/runner.ts
+++ b/std/testing/runner.ts
@@ -182,7 +182,7 @@ export async function runTestModules({
if (moduleCount == 0) {
const noneFoundMessage = "No matching test modules found.";
if (!allowNone) {
- throw new Deno.Err.NotFound(noneFoundMessage);
+ throw new Deno.errors.NotFound(noneFoundMessage);
} else if (!disableLog) {
console.log(noneFoundMessage);
}