libsnapshot: correct DeviceInfo paths

Test: pass
Bug: 135752105
Change-Id: Icb8eb35db9c297537131076721eb7ce868d59625
This commit is contained in:
Yifan Hong 2019-08-05 19:33:50 -07:00
parent 23a87716b5
commit 6250360390

View file

@ -48,7 +48,7 @@ static constexpr uint32_t kSnapshotChunkSize = 8;
class DeviceInfo final : public SnapshotManager::IDeviceInfo {
public:
std::string GetGsidDir() const override { return "ota"s; }
std::string GetMetadataDir() const override { return "/metadata/ota/test"s; }
std::string GetMetadataDir() const override { return "/metadata/ota"s; }
bool IsRunningSnapshot() const override;
};