aboutsummaryrefslogtreecommitdiff
path: root/java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java
diff options
context:
space:
mode:
authorTamir Duberstein <tamird@gmail.com>2015-04-02 14:22:35 -0700
committerTamir Duberstein <tamird@gmail.com>2015-04-02 15:06:32 -0700
commitbadef1fc19566745e1a052430202bb34b6a6150f (patch)
treefff4fda42b9d686e575ace97fb5de18822c97512 /java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java
parent2820e86aab2417a8274dc64a6d5de62f1fcaedc8 (diff)
downloadprotobuf-badef1fc19566745e1a052430202bb34b6a6150f.tar.gz
protobuf-badef1fc19566745e1a052430202bb34b6a6150f.tar.bz2
protobuf-badef1fc19566745e1a052430202bb34b6a6150f.zip
Move `UTF_8` to `Internal`
Diffstat (limited to 'java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java')
-rw-r--r--java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java b/java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java
index 43872d1d..cc385599 100644
--- a/java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java
+++ b/java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java
@@ -116,7 +116,7 @@ public class RopeByteStringSubstringTest extends LiteralByteStringTest {
assertEquals(classUnderTest + " from string must have the expected type",
classUnderTest, getActualClassName(unicode));
- String roundTripString = unicode.toString(ByteString.UTF_8);
+ String roundTripString = unicode.toString(Internal.UTF_8);
assertEquals(classUnderTest + " unicode bytes must match",
testString, roundTripString);
ByteString flatString = ByteString.copyFromUtf8(testString);