updated TCGEventLogEventsTest

This commit is contained in:
lareine 2021-08-17 17:30:45 -04:00
parent ef23c68133
commit 32887eb598

View File

@ -138,8 +138,8 @@ public final void testHandOffTables() throws IOException {
byte[] eventBytes = HexUtils.hexStringToByteArray(event); byte[] eventBytes = HexUtils.hexStringToByteArray(event);
EvEfiHandoffTable hTable = new EvEfiHandoffTable(eventBytes); EvEfiHandoffTable hTable = new EvEfiHandoffTable(eventBytes);
Assert.assertEquals(hTable.getNumberOfTables(), 1); Assert.assertEquals(hTable.getNumberOfTables(), 1);
String tableINfo = hTable.toString(); String tableInfo = hTable.toString();
Assert.assertFalse(tableINfo.toString(). Assert.assertTrue(tableInfo.toString().
contains("UEFI industry standard table type = SMBIOS3_TABLE_GUID")); contains("UEFI industry standard table type = SMBIOS3_TABLE_GUID"));
} }