summaryrefslogtreecommitdiff
path: root/test_util/src
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-01-01 14:58:21 -0500
committerGitHub <noreply@github.com>2024-01-01 19:58:21 +0000
commit7e72f3af6152d4b62c2ea94d025dfa297a6b0cb4 (patch)
tree76753f501bbede065efca7a0b62b823d64a2d9de /test_util/src
parent8ba828b41e2609c91d993aec464035d62320fdad (diff)
chore: update copyright to 2024 (#21753)
Diffstat (limited to 'test_util/src')
-rw-r--r--test_util/src/assertions.rs2
-rw-r--r--test_util/src/builders.rs2
-rw-r--r--test_util/src/factory.rs2
-rw-r--r--test_util/src/fs.rs2
-rw-r--r--test_util/src/https.rs2
-rw-r--r--test_util/src/lib.rs2
-rw-r--r--test_util/src/lsp.rs2
-rw-r--r--test_util/src/npm.rs2
-rw-r--r--test_util/src/pty.rs2
-rw-r--r--test_util/src/servers/grpc.rs2
-rw-r--r--test_util/src/servers/hyper_utils.rs2
-rw-r--r--test_util/src/servers/mod.rs2
-rw-r--r--test_util/src/servers/registry.rs2
-rw-r--r--test_util/src/servers/ws.rs2
-rw-r--r--test_util/src/test_server.rs2
15 files changed, 15 insertions, 15 deletions
diff --git a/test_util/src/assertions.rs b/test_util/src/assertions.rs
index abe782127..b9aba9354 100644
--- a/test_util/src/assertions.rs
+++ b/test_util/src/assertions.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use crate::colors;
diff --git a/test_util/src/builders.rs b/test_util/src/builders.rs
index c356ab16a..7957b946c 100644
--- a/test_util/src/builders.rs
+++ b/test_util/src/builders.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use std::cell::RefCell;
use std::collections::HashMap;
diff --git a/test_util/src/factory.rs b/test_util/src/factory.rs
index f29b64485..5b796fbc1 100644
--- a/test_util/src/factory.rs
+++ b/test_util/src/factory.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use glob::glob;
use std::collections::HashSet;
use std::path::PathBuf;
diff --git a/test_util/src/fs.rs b/test_util/src/fs.rs
index 5a0ad8d5b..9cfbcaaa7 100644
--- a/test_util/src/fs.rs
+++ b/test_util/src/fs.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use std::borrow::Cow;
use std::ffi::OsStr;
diff --git a/test_util/src/https.rs b/test_util/src/https.rs
index 8793e3c37..576df6d52 100644
--- a/test_util/src/https.rs
+++ b/test_util/src/https.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use anyhow::anyhow;
use futures::Stream;
use futures::StreamExt;
diff --git a/test_util/src/lib.rs b/test_util/src/lib.rs
index 555ba5271..bcd58a3a6 100644
--- a/test_util/src/lib.rs
+++ b/test_util/src/lib.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
// Usage: provide a port as argument to run hyper_hello benchmark server
// otherwise this starts multiple servers on many ports for test endpoints.
use futures::FutureExt;
diff --git a/test_util/src/lsp.rs b/test_util/src/lsp.rs
index 222415cdd..d6a0bc384 100644
--- a/test_util/src/lsp.rs
+++ b/test_util/src/lsp.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use crate::deno_exe_path;
use crate::npm_registry_url;
diff --git a/test_util/src/npm.rs b/test_util/src/npm.rs
index 543d28a41..04207b0ee 100644
--- a/test_util/src/npm.rs
+++ b/test_util/src/npm.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use std::collections::HashMap;
use std::fs;
diff --git a/test_util/src/pty.rs b/test_util/src/pty.rs
index b9f9dfc8b..3e3331b84 100644
--- a/test_util/src/pty.rs
+++ b/test_util/src/pty.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use std::borrow::Cow;
use std::collections::HashMap;
diff --git a/test_util/src/servers/grpc.rs b/test_util/src/servers/grpc.rs
index dfbf160f6..144afc06a 100644
--- a/test_util/src/servers/grpc.rs
+++ b/test_util/src/servers/grpc.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use futures::StreamExt;
use h2;
diff --git a/test_util/src/servers/hyper_utils.rs b/test_util/src/servers/hyper_utils.rs
index 9f61f022f..e7af25d92 100644
--- a/test_util/src/servers/hyper_utils.rs
+++ b/test_util/src/servers/hyper_utils.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use bytes::Bytes;
use futures::Future;
diff --git a/test_util/src/servers/mod.rs b/test_util/src/servers/mod.rs
index 6d8b83414..304d450b4 100644
--- a/test_util/src/servers/mod.rs
+++ b/test_util/src/servers/mod.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
// Usage: provide a port as argument to run hyper_hello benchmark server
// otherwise this starts multiple servers on many ports for test endpoints.
use base64::prelude::BASE64_STANDARD;
diff --git a/test_util/src/servers/registry.rs b/test_util/src/servers/registry.rs
index 50a9ac69f..c88045a0d 100644
--- a/test_util/src/servers/registry.rs
+++ b/test_util/src/servers/registry.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use super::run_server;
use super::ServerKind;
diff --git a/test_util/src/servers/ws.rs b/test_util/src/servers/ws.rs
index 48e4cae8b..815119b6a 100644
--- a/test_util/src/servers/ws.rs
+++ b/test_util/src/servers/ws.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use anyhow::anyhow;
use bytes::Bytes;
diff --git a/test_util/src/test_server.rs b/test_util/src/test_server.rs
index 6226ffcac..6fc86f415 100644
--- a/test_util/src/test_server.rs
+++ b/test_util/src/test_server.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
fn main() {
test_util::servers::run_all_servers();