summaryrefslogtreecommitdiff
path: root/std/testing
diff options
context:
space:
mode:
Diffstat (limited to 'std/testing')
-rw-r--r--std/testing/asserts.ts2
-rw-r--r--std/testing/asserts_test.ts2
-rw-r--r--std/testing/bench.ts2
-rw-r--r--std/testing/diff.ts2
-rw-r--r--std/testing/mod.ts2
-rwxr-xr-xstd/testing/runner.ts2
-rw-r--r--std/testing/runner_test.ts2
-rw-r--r--std/testing/test.ts2
8 files changed, 8 insertions, 8 deletions
diff --git a/std/testing/asserts.ts b/std/testing/asserts.ts
index e52644e7a..f2877eb8d 100644
--- a/std/testing/asserts.ts
+++ b/std/testing/asserts.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { red, green, white, gray, bold } from "../fmt/colors.ts";
import diff, { DiffType, DiffResult } from "./diff.ts";
import { format } from "./format.ts";
diff --git a/std/testing/asserts_test.ts b/std/testing/asserts_test.ts
index be0502ce6..ede5abbde 100644
--- a/std/testing/asserts_test.ts
+++ b/std/testing/asserts_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import {
assert,
diff --git a/std/testing/bench.ts b/std/testing/bench.ts
index 3bb62526d..c76c1bd7c 100644
--- a/std/testing/bench.ts
+++ b/std/testing/bench.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
const { exit, noColor } = Deno;
diff --git a/std/testing/diff.ts b/std/testing/diff.ts
index 38d632e9a..5cedb402a 100644
--- a/std/testing/diff.ts
+++ b/std/testing/diff.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
interface FarthestPoint {
y: number;
id: number;
diff --git a/std/testing/mod.ts b/std/testing/mod.ts
index 06a1df958..16eae5ebe 100644
--- a/std/testing/mod.ts
+++ b/std/testing/mod.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
export * from "./asserts.ts";
export * from "./bench.ts";
diff --git a/std/testing/runner.ts b/std/testing/runner.ts
index 3bea649f7..d0d9ae2ec 100755
--- a/std/testing/runner.ts
+++ b/std/testing/runner.ts
@@ -1,5 +1,5 @@
#!/usr/bin/env -S deno -A
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { parse } from "../flags/mod.ts";
import { ExpandGlobOptions, expandGlob } from "../fs/mod.ts";
import { isWindows, join } from "../path/mod.ts";
diff --git a/std/testing/runner_test.ts b/std/testing/runner_test.ts
index 40159db3d..95f2b49cc 100644
--- a/std/testing/runner_test.ts
+++ b/std/testing/runner_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "../testing/asserts.ts";
import { isWindows } from "../path/mod.ts";
import { test } from "./mod.ts";
diff --git a/std/testing/test.ts b/std/testing/test.ts
index 56eacdeed..5379a5199 100644
--- a/std/testing/test.ts
+++ b/std/testing/test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { test, runIfMain } from "./mod.ts";
import {
assert,