bmc/test: drop unused variable
There was a variable in a test that aimed to do something but was
unused.
Signed-off-by: Patrick Venture <venture@google.com>
Change-Id: Ieffd014d740acebbafa68d98076bd63fd1855132
diff --git a/bmc/test/firmware_commit_unittest.cpp b/bmc/test/firmware_commit_unittest.cpp
index e1635e9..1d0a4ca 100644
--- a/bmc/test/firmware_commit_unittest.cpp
+++ b/bmc/test/firmware_commit_unittest.cpp
@@ -48,11 +48,6 @@
/* Verify the flash image returns failure on this command. It's a fairly
* artificial test.
*/
-
- /* Verify it doesn't get called by using StrictMock. */
- std::unique_ptr<TriggerableActionInterface> verifyMock =
- std::make_unique<StrictMock<TriggerMock>>();
-
auto handler = FirmwareBlobHandler::CreateFirmwareBlobHandler(
std::move(blobs), std::move(data), std::move(CreateActionMap("asdf")));
@@ -69,11 +64,6 @@
/* Verify the hash file returns failure on this command. It's a fairly
* artificial test.
*/
-
- /* Verify it doesn't get called by using StrictMock. */
- std::unique_ptr<TriggerableActionInterface> verifyMock =
- std::make_unique<StrictMock<TriggerMock>>();
-
auto handler = FirmwareBlobHandler::CreateFirmwareBlobHandler(
std::move(blobs), std::move(data), std::move(CreateActionMap("asdf")));