summaryrefslogtreecommitdiff
path: root/test_napi
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-01-02 16:00:42 -0500
committerGitHub <noreply@github.com>2023-01-02 21:00:42 +0000
commit10e4b2e14046b74469f7310c599579a6611513fe (patch)
treef6e446cb97d1df8b7413f3bf3a9c897ff487b275 /test_napi
parentf729576b2db2aa6ce000a598ad2e45533f686213 (diff)
chore: update copyright year to 2023 (#17247)
Yearly tradition of creating extra noise in git.
Diffstat (limited to 'test_napi')
-rw-r--r--test_napi/Cargo.toml2
-rw-r--r--test_napi/array_test.js2
-rw-r--r--test_napi/arraybuffer_test.js2
-rw-r--r--test_napi/async_test.js2
-rw-r--r--test_napi/build.rs2
-rw-r--r--test_napi/callback_test.js2
-rw-r--r--test_napi/coerce_test.js2
-rw-r--r--test_napi/common.js2
-rw-r--r--test_napi/numbers_test.js2
-rw-r--r--test_napi/object_wrap_test.js2
-rw-r--r--test_napi/promise_test.js2
-rw-r--r--test_napi/properties_test.js2
-rw-r--r--test_napi/src/array.rs2
-rw-r--r--test_napi/src/arraybuffer.rs2
-rw-r--r--test_napi/src/async.rs2
-rw-r--r--test_napi/src/callback.rs2
-rw-r--r--test_napi/src/coerce.rs2
-rw-r--r--test_napi/src/lib.rs2
-rw-r--r--test_napi/src/numbers.rs2
-rw-r--r--test_napi/src/object_wrap.rs2
-rw-r--r--test_napi/src/promise.rs2
-rw-r--r--test_napi/src/properties.rs2
-rw-r--r--test_napi/src/strings.rs2
-rw-r--r--test_napi/src/typedarray.rs2
-rw-r--r--test_napi/strings_test.js2
-rw-r--r--test_napi/tests/napi_tests.rs2
-rw-r--r--test_napi/typedarray_test.js2
27 files changed, 27 insertions, 27 deletions
diff --git a/test_napi/Cargo.toml b/test_napi/Cargo.toml
index 5a81f1ea1..6717ecce3 100644
--- a/test_napi/Cargo.toml
+++ b/test_napi/Cargo.toml
@@ -1,4 +1,4 @@
-# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
[package]
name = "test_napi"
diff --git a/test_napi/array_test.js b/test_napi/array_test.js
index 314ea5e50..1c9956188 100644
--- a/test_napi/array_test.js
+++ b/test_napi/array_test.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { assertEquals, loadTestLibrary } from "./common.js";
diff --git a/test_napi/arraybuffer_test.js b/test_napi/arraybuffer_test.js
index 577443e8b..c08ffc7d6 100644
--- a/test_napi/arraybuffer_test.js
+++ b/test_napi/arraybuffer_test.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { assertEquals, loadTestLibrary } from "./common.js";
diff --git a/test_napi/async_test.js b/test_napi/async_test.js
index ea1b714bd..f48d3d754 100644
--- a/test_napi/async_test.js
+++ b/test_napi/async_test.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { assertEquals, loadTestLibrary } from "./common.js";
diff --git a/test_napi/build.rs b/test_napi/build.rs
index 9d3021a0e..2255820e6 100644
--- a/test_napi/build.rs
+++ b/test_napi/build.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
extern crate napi_build;
diff --git a/test_napi/callback_test.js b/test_napi/callback_test.js
index debb1d7ba..c97814312 100644
--- a/test_napi/callback_test.js
+++ b/test_napi/callback_test.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { assertEquals, loadTestLibrary } from "./common.js";
diff --git a/test_napi/coerce_test.js b/test_napi/coerce_test.js
index be0ee03e7..158d32f68 100644
--- a/test_napi/coerce_test.js
+++ b/test_napi/coerce_test.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { assertEquals, loadTestLibrary } from "./common.js";
diff --git a/test_napi/common.js b/test_napi/common.js
index 13dad6cfc..d1db4e9bf 100644
--- a/test_napi/common.js
+++ b/test_napi/common.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
export {
assert,
diff --git a/test_napi/numbers_test.js b/test_napi/numbers_test.js
index 2f778285a..869fd2eae 100644
--- a/test_napi/numbers_test.js
+++ b/test_napi/numbers_test.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { assertEquals, loadTestLibrary } from "./common.js";
diff --git a/test_napi/object_wrap_test.js b/test_napi/object_wrap_test.js
index 2263894cd..2522a8e6c 100644
--- a/test_napi/object_wrap_test.js
+++ b/test_napi/object_wrap_test.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { assertEquals, loadTestLibrary } from "./common.js";
diff --git a/test_napi/promise_test.js b/test_napi/promise_test.js
index 86a3f134b..ca2d1ae9b 100644
--- a/test_napi/promise_test.js
+++ b/test_napi/promise_test.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { assertEquals, assertRejects, loadTestLibrary } from "./common.js";
diff --git a/test_napi/properties_test.js b/test_napi/properties_test.js
index b24c5649e..78268ba15 100644
--- a/test_napi/properties_test.js
+++ b/test_napi/properties_test.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { assertEquals, loadTestLibrary } from "./common.js";
diff --git a/test_napi/src/array.rs b/test_napi/src/array.rs
index 767aa08b1..adb2b426e 100644
--- a/test_napi/src/array.rs
+++ b/test_napi/src/array.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use napi_sys::Status::napi_ok;
use napi_sys::ValueType::napi_number;
diff --git a/test_napi/src/arraybuffer.rs b/test_napi/src/arraybuffer.rs
index cf170e713..ce50f914f 100644
--- a/test_napi/src/arraybuffer.rs
+++ b/test_napi/src/arraybuffer.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use napi_sys::Status::napi_ok;
use napi_sys::*;
diff --git a/test_napi/src/async.rs b/test_napi/src/async.rs
index 53432de7c..d825636e1 100644
--- a/test_napi/src/async.rs
+++ b/test_napi/src/async.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use napi_sys::Status::napi_ok;
use napi_sys::ValueType::napi_function;
diff --git a/test_napi/src/callback.rs b/test_napi/src/callback.rs
index bf6062913..4b97f1c0b 100644
--- a/test_napi/src/callback.rs
+++ b/test_napi/src/callback.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use napi_sys::Status::napi_ok;
use napi_sys::ValueType::napi_function;
diff --git a/test_napi/src/coerce.rs b/test_napi/src/coerce.rs
index 611540fae..edce7f767 100644
--- a/test_napi/src/coerce.rs
+++ b/test_napi/src/coerce.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use napi_sys::Status::napi_ok;
use napi_sys::*;
diff --git a/test_napi/src/lib.rs b/test_napi/src/lib.rs
index c1a13f6e4..0bdea0280 100644
--- a/test_napi/src/lib.rs
+++ b/test_napi/src/lib.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
#![allow(clippy::all)]
#![allow(clippy::undocumented_unsafe_blocks)]
diff --git a/test_napi/src/numbers.rs b/test_napi/src/numbers.rs
index a6628af13..8808659f9 100644
--- a/test_napi/src/numbers.rs
+++ b/test_napi/src/numbers.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use napi_sys::Status::napi_ok;
use napi_sys::ValueType::napi_number;
diff --git a/test_napi/src/object_wrap.rs b/test_napi/src/object_wrap.rs
index 40189e01c..bedb6d852 100644
--- a/test_napi/src/object_wrap.rs
+++ b/test_napi/src/object_wrap.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use napi_sys::Status::napi_ok;
use napi_sys::ValueType::napi_number;
diff --git a/test_napi/src/promise.rs b/test_napi/src/promise.rs
index ebb9dedab..02ea2f237 100644
--- a/test_napi/src/promise.rs
+++ b/test_napi/src/promise.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use napi_sys::Status::napi_ok;
use napi_sys::*;
diff --git a/test_napi/src/properties.rs b/test_napi/src/properties.rs
index b245fd61d..dafa9ef96 100644
--- a/test_napi/src/properties.rs
+++ b/test_napi/src/properties.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use napi_sys::PropertyAttributes::*;
use napi_sys::Status::napi_ok;
diff --git a/test_napi/src/strings.rs b/test_napi/src/strings.rs
index f4139c85a..5029944da 100644
--- a/test_napi/src/strings.rs
+++ b/test_napi/src/strings.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use napi_sys::Status::napi_ok;
use napi_sys::ValueType::napi_string;
diff --git a/test_napi/src/typedarray.rs b/test_napi/src/typedarray.rs
index f7d2e2f24..f8b5fd674 100644
--- a/test_napi/src/typedarray.rs
+++ b/test_napi/src/typedarray.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use core::ffi::c_void;
use napi_sys::Status::napi_ok;
diff --git a/test_napi/strings_test.js b/test_napi/strings_test.js
index 20e95ba61..e2e3cb647 100644
--- a/test_napi/strings_test.js
+++ b/test_napi/strings_test.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { assertEquals, loadTestLibrary } from "./common.js";
diff --git a/test_napi/tests/napi_tests.rs b/test_napi/tests/napi_tests.rs
index 41ec5c851..1c0f59fdf 100644
--- a/test_napi/tests/napi_tests.rs
+++ b/test_napi/tests/napi_tests.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use std::process::Command;
use test_util::deno_cmd;
diff --git a/test_napi/typedarray_test.js b/test_napi/typedarray_test.js
index a3c7322f7..3cd084dc8 100644
--- a/test_napi/typedarray_test.js
+++ b/test_napi/typedarray_test.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { assertEquals, loadTestLibrary } from "./common.js";