From 76b742ec283455e5ea6394414a4eb233e4c19bc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thi=C3=A9baud=20Weksteen?= Date: Wed, 6 Jul 2016 13:21:51 +1000 Subject: [PATCH] Remove test assertion based on stdout (#44) --- source/tool/tests/software/test_util.py | 1 - 1 file changed, 1 deletion(-) diff --git a/source/tool/tests/software/test_util.py b/source/tool/tests/software/test_util.py index 019949d3..66277a74 100644 --- a/source/tool/tests/software/test_util.py +++ b/source/tool/tests/software/test_util.py @@ -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)