diff options
Diffstat (limited to 'std/testing/runner.ts')
-rwxr-xr-x | std/testing/runner.ts | 2 |
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); } |