aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@vespa.ai>2023-10-09 10:26:49 +0200
committerJon Bratseth <bratseth@vespa.ai>2023-10-09 10:26:49 +0200
commit2303676f6359054169221afde2e2af0dd9ae2b1d (patch)
treea047eb1e5f38a16aaa266968215147ef3c90b690 /vespajlib/src
parent0c55dc92a3bf889c67fac1ca855e6e33e1994904 (diff)
Expect Vespa.ai copyright
Diffstat (limited to 'vespajlib/src')
-rw-r--r--vespajlib/src/test/java/com/yahoo/io/FileReadTestCase.java4
1 files changed, 2 insertions, 2 deletions
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"));
}