IOS/ESFormats: Use SignedBlobReader for TMDs and tickets

This commit is contained in:
Léo Lam
2017-06-11 13:24:45 +02:00
parent 2ec04675c9
commit 6c3069be97
10 changed files with 24 additions and 86 deletions

View File

@ -76,7 +76,7 @@ void TMDReaderTest::TestGeneralInfo()
void TMDReaderTest::TestRawTMDAndView()
{
const std::vector<u8>& dolphin_tmd_bytes = m_tmd.GetRawTMD();
const std::vector<u8>& dolphin_tmd_bytes = m_tmd.GetBytes();
// Separate check because gtest prints neither the size nor the full buffer.
EXPECT_EQ(m_raw_tmd.size(), dolphin_tmd_bytes.size());
EXPECT_EQ(m_raw_tmd, dolphin_tmd_bytes);