Remove test assertion based on stdout (#44)

This commit is contained in:
Thiébaud Weksteen
2016-07-06 13:21:51 +10:00
committed by GitHub
parent f0f0b85bea
commit 76b742ec28
-1
View File
@@ -212,6 +212,5 @@ class TestChipsecUtil(unittest.TestCase):
fileno, rom_file = tempfile.mkstemp()
os.close(fileno)
self._chipsec_util("spi dump %s" % rom_file, mock_helper.SPIHelper)
self.assertIn("Dumping 0x00003000 bytes", self.log)
self.assertEqual(os.stat(rom_file).st_size, 0x3000)
os.remove(rom_file)