summaryrefslogtreecommitdiff
path: root/std/testing
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2021-01-10 21:59:07 -0500
committerGitHub <noreply@github.com>2021-01-10 21:59:07 -0500
commit2b75a1155906613df16bad9d1eb84f3dc0ba571b (patch)
treefb6fdea18d774994d902b27c9bc841d2169a0420 /std/testing
parentb0821fe9ce017ea1fdec191622f27c31af9c4f0f (diff)
update copyright to 2021 (#9081)
Diffstat (limited to 'std/testing')
-rw-r--r--std/testing/_diff.ts2
-rw-r--r--std/testing/_diff_test.ts2
-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/bench_example.ts2
-rw-r--r--std/testing/bench_test.ts2
7 files changed, 7 insertions, 7 deletions
diff --git a/std/testing/_diff.ts b/std/testing/_diff.ts
index 25b4cc977..7d659acd2 100644
--- a/std/testing/_diff.ts
+++ b/std/testing/_diff.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
// This module is browser compatible.
interface FarthestPoint {
diff --git a/std/testing/_diff_test.ts b/std/testing/_diff_test.ts
index 211a34c34..ec40c191c 100644
--- a/std/testing/_diff_test.ts
+++ b/std/testing/_diff_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { diff } from "./_diff.ts";
import { assertEquals } from "../testing/asserts.ts";
diff --git a/std/testing/asserts.ts b/std/testing/asserts.ts
index 75a86a4c2..3daf0d83f 100644
--- a/std/testing/asserts.ts
+++ b/std/testing/asserts.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
// This module is browser compatible. Do not rely on good formatting of values
// for AssertionError messages in browsers.
diff --git a/std/testing/asserts_test.ts b/std/testing/asserts_test.ts
index 5fefb5649..14ffd2962 100644
--- a/std/testing/asserts_test.ts
+++ b/std/testing/asserts_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import {
_format,
assert,
diff --git a/std/testing/bench.ts b/std/testing/bench.ts
index e1d3c86c9..159a70cf7 100644
--- a/std/testing/bench.ts
+++ b/std/testing/bench.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { assert } from "../_util/assert.ts";
import { deepAssign } from "../_util/deep_assign.ts";
diff --git a/std/testing/bench_example.ts b/std/testing/bench_example.ts
index 496033fff..5af277f1c 100644
--- a/std/testing/bench_example.ts
+++ b/std/testing/bench_example.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
// https://deno.land/std/testing/bench.ts
import { bench, BenchmarkTimer, runBenchmarks } from "./bench.ts";
diff --git a/std/testing/bench_test.ts b/std/testing/bench_test.ts
index 18b78c5a2..6ce7796ca 100644
--- a/std/testing/bench_test.ts
+++ b/std/testing/bench_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import {
bench,
BenchmarkRunError,