We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22a592e commit 45f0e65Copy full SHA for 45f0e65
test/manifest_list_reader_test.cc
@@ -43,7 +43,7 @@ class ManifestListReaderTestBase : public TempFileTestBase {
43
void TestManifestListReading(const std::string& resource_name,
44
const std::vector<ManifestFile>& expected_manifest_list) {
45
std::string path = GetResourcePath(resource_name);
46
- auto manifest_reader_result = ManifestListReader::MakeReader(path, file_io_);
+ auto manifest_reader_result = ManifestListReader::Make(path, file_io_);
47
ASSERT_EQ(manifest_reader_result.has_value(), true);
48
49
auto manifest_reader = std::move(manifest_reader_result.value());
0 commit comments