diff options
Diffstat (limited to 'bmc/test/firmware_state_verificationstarted_unittest.cpp')
-rw-r--r-- | bmc/test/firmware_state_verificationstarted_unittest.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/bmc/test/firmware_state_verificationstarted_unittest.cpp b/bmc/test/firmware_state_verificationstarted_unittest.cpp index 8c0d476..a974c2b 100644 --- a/bmc/test/firmware_state_verificationstarted_unittest.cpp +++ b/bmc/test/firmware_state_verificationstarted_unittest.cpp @@ -194,10 +194,6 @@ TEST_F(FirmwareHandlerVerificationStartedTest, StatOnNormalBlobsReturnsSuccess) { getToVerificationStarted(staticLayoutBlobId); - blobs::BlobMeta expected; - expected.blobState = FirmwareFlags::UpdateFlags::ipmi; - expected.size = 0; - std::vector<std::string> testBlobs = {staticLayoutBlobId, hashBlobId}; for (const auto& blob : testBlobs) { @@ -205,7 +201,7 @@ TEST_F(FirmwareHandlerVerificationStartedTest, StatOnNormalBlobsReturnsSuccess) blobs::BlobMeta meta = {}; EXPECT_TRUE(handler->stat(blob, &meta)); - EXPECT_EQ(expected, meta); + EXPECT_EQ(expectedIdleMeta, meta); } } |