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') 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