Chromium Code Reviews| Index: third_party/zlib/google/zip_reader_unittest.cc |
| diff --git a/third_party/zlib/google/zip_reader_unittest.cc b/third_party/zlib/google/zip_reader_unittest.cc |
| index 09fc241bd6fc5fdcdf82449ed7953fa636d0a45e..2a66cc2b3ee34e522830b82f25df23505b2f3a25 100644 |
| --- a/third_party/zlib/google/zip_reader_unittest.cc |
| +++ b/third_party/zlib/google/zip_reader_unittest.cc |
| @@ -180,8 +180,8 @@ TEST_F(ZipReaderTest, Open_ValidZipFile) { |
| } |
| TEST_F(ZipReaderTest, Open_ValidZipPlatformFile) { |
| - ZipReader reader; |
| FileWrapper zip_fd_wrapper(test_zip_file_, FileWrapper::READ_ONLY); |
|
satorux1
2014/11/12 07:04:43
does this have to be moved? otherwise, keep it-as-
jeremyspiegel
2014/11/12 08:52:51
This doesn't have to be moved to work correctly, b
satorux1
2014/11/14 02:27:51
I see. There are many places in the file where Zip
jeremyspiegel
2014/11/14 23:49:25
Ah I missed those. Sounds good, I'll leave this as
|
| + ZipReader reader; |
| ASSERT_TRUE(reader.OpenFromPlatformFile(zip_fd_wrapper.platform_file())); |
| } |