summaryrefslogtreecommitdiffstats
path: root/vespajlib/src/test/java/com/yahoo/io/FileReadTestCase.java
diff options
context:
space:
mode:
Diffstat (limited to 'vespajlib/src/test/java/com/yahoo/io/FileReadTestCase.java')
-rw-r--r--vespajlib/src/test/java/com/yahoo/io/FileReadTestCase.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/vespajlib/src/test/java/com/yahoo/io/FileReadTestCase.java b/vespajlib/src/test/java/com/yahoo/io/FileReadTestCase.java
index 5ebdeeb797e..f03944ff6f8 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 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.io;
import org.junit.Test;
@@ -15,14 +15,14 @@ public class FileReadTestCase extends junit.framework.TestCase {
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 2016 Yahoo Inc."));
+ assertTrue(str.startsWith("// Copyright 2017 Yahoo Holdings."));
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 2016 Yahoo Inc."));
+ assertTrue(str.startsWith("// Copyright 2017 Yahoo Holdings."));
assertTrue(str.endsWith("// Yeppers\n"));
}