Skip to content

Commit 77d8514

Browse files
kstangerKeith Stanger
authored and
Keith Stanger
committed
Remove portion of test that doesn't compile against protobuf 2.6.1.
Change on 2016/07/26 by kstanger <[email protected]> ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=128478979
1 parent ded5347 commit 77d8514

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

protobuf/tests/CompatibilityTest.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -286,14 +286,6 @@ public void testMergeAndParseFromInputStream() throws Exception {
286286
TypicalData.newBuilder().mergeFrom(new ByteArrayInputStream(rawData)).build(), false);
287287
checkMergeAndParse(TypicalData.parseFrom(new ByteArrayInputStream(rawData)), false);
288288

289-
// test using ExtensionRegistryLite
290-
ExtensionRegistryLite registryLite = ExtensionRegistryLite.newInstance();
291-
registryLite.add(Typical.myPrimitiveExtension);
292-
checkMergeAndParse(
293-
TypicalData.newBuilder().mergeFrom(new ByteArrayInputStream(rawData), registryLite).build(),
294-
true);
295-
checkMergeAndParse(
296-
TypicalData.parseFrom(new ByteArrayInputStream(rawData), registryLite), true);
297289
}
298290

299291
public void testMergeAndParseDelimitedFromInputStream() throws Exception {

0 commit comments

Comments
 (0)