Merge pull request #389 from nsacyber/eventLogTesFix

updated TCGEventLogEventsTest
This commit is contained in:
iadgovuser26 2021-08-18 16:20:16 -04:00 committed by GitHub
commit 9fbbf81ada
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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