diff options
Diffstat (limited to 'std/testing')
-rw-r--r-- | std/testing/_diff.ts | 2 | ||||
-rw-r--r-- | std/testing/_diff_test.ts | 2 | ||||
-rw-r--r-- | std/testing/asserts.ts | 2 | ||||
-rw-r--r-- | std/testing/asserts_test.ts | 2 | ||||
-rw-r--r-- | std/testing/bench.ts | 2 | ||||
-rw-r--r-- | std/testing/bench_example.ts | 2 | ||||
-rw-r--r-- | std/testing/bench_test.ts | 2 |
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, |