From 0c55dc92a3bf889c67fac1ca855e6e33e1994904 Mon Sep 17 00:00:00 2001 From: Jon Bratseth Date: Mon, 9 Oct 2023 09:44:29 +0200 Subject: Update copyright --- vespajlib/src/test/java/com/yahoo/io/FileReadTestCase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vespajlib/src/test/java/com/yahoo/io/FileReadTestCase.java') diff --git a/vespajlib/src/test/java/com/yahoo/io/FileReadTestCase.java b/vespajlib/src/test/java/com/yahoo/io/FileReadTestCase.java index ce94d4f90e8..532e8a06707 100644 --- a/vespajlib/src/test/java/com/yahoo/io/FileReadTestCase.java +++ b/vespajlib/src/test/java/com/yahoo/io/FileReadTestCase.java @@ -1,4 +1,4 @@ -// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. +// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. package com.yahoo.io; import org.junit.Test; -- cgit v1.2.3 From 2303676f6359054169221afde2e2af0dd9ae2b1d Mon Sep 17 00:00:00 2001 From: Jon Bratseth Date: Mon, 9 Oct 2023 10:26:49 +0200 Subject: Expect Vespa.ai copyright --- vespajlib/src/test/java/com/yahoo/io/FileReadTestCase.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vespajlib/src/test/java/com/yahoo/io/FileReadTestCase.java') diff --git a/vespajlib/src/test/java/com/yahoo/io/FileReadTestCase.java b/vespajlib/src/test/java/com/yahoo/io/FileReadTestCase.java index 532e8a06707..f5f6caa126f 100644 --- a/vespajlib/src/test/java/com/yahoo/io/FileReadTestCase.java +++ b/vespajlib/src/test/java/com/yahoo/io/FileReadTestCase.java @@ -17,14 +17,14 @@ public class FileReadTestCase { public void testReadByteArray() throws IOException { byte[] thisFile = IOUtils.readFileBytes(new File("src/test/java/com/yahoo/io/FileReadTestCase.java")); String str = new String(thisFile, Charset.forName("US-ASCII")); - assertTrue(str.startsWith("// Copyright Yahoo.")); + assertTrue(str.startsWith("// Copyright Vespa.ai.")); assertTrue(str.endsWith("// Yeppers\n")); } @Test public void testReadString() throws IOException { String str = IOUtils.readFile(new File("src/test/java/com/yahoo/io/FileReadTestCase.java")); - assertTrue(str.startsWith("// Copyright Yahoo.")); + assertTrue(str.startsWith("// Copyright Vespa.ai.")); assertTrue(str.endsWith("// Yeppers\n")); } -- cgit v1.2.3