aboutsummaryrefslogtreecommitdiff
path: root/src/vcdecoder1_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/vcdecoder1_test.cc')
-rw-r--r--src/vcdecoder1_test.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/vcdecoder1_test.cc b/src/vcdecoder1_test.cc
index 7c825d7..7eef598 100644
--- a/src/vcdecoder1_test.cc
+++ b/src/vcdecoder1_test.cc
@@ -131,18 +131,6 @@ TEST_F(VCDiffStandardDecoderTest, FuzzBits) {
}
}
-TEST_F(VCDiffStandardDecoderTest, CheckAnnotatedOutput) {
- decoder_.EnableAnnotatedOutput();
- decoder_.StartDecoding(dictionary_.data(), dictionary_.size());
- EXPECT_TRUE(decoder_.DecodeChunk(delta_file_.data(),
- delta_file_.size(),
- &output_));
- EXPECT_TRUE(decoder_.FinishDecoding());
- string annotated_output;
- decoder_.GetAnnotatedOutput(&annotated_output);
- EXPECT_EQ(expected_annotated_target_, annotated_output);
-}
-
// Change each element of the delta file window to an erroneous value
// and make sure it's caught as an error.