diff options
Diffstat (limited to 'test/ipmi_open_unittest.cpp')
-rw-r--r-- | test/ipmi_open_unittest.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/ipmi_open_unittest.cpp b/test/ipmi_open_unittest.cpp index 523025d..704c144 100644 --- a/test/ipmi_open_unittest.cpp +++ b/test/ipmi_open_unittest.cpp @@ -39,7 +39,8 @@ TEST(BlobOpenTest, InvalidRequestLengthReturnsFailure) dataLen = sizeof(struct BmcBlobOpenTx) + blobId.length(); - EXPECT_EQ(IPMI_CC_INVALID, openBlob(&mgr, request, reply, &dataLen)); + EXPECT_EQ(IPMI_CC_REQ_DATA_LEN_INVALID, + openBlob(&mgr, request, reply, &dataLen)); } TEST(BlobOpenTest, RequestRejectedReturnsFailure) @@ -65,7 +66,8 @@ TEST(BlobOpenTest, RequestRejectedReturnsFailure) EXPECT_CALL(mgr, open(req->flags, StrEq(blobId), _)) .WillOnce(Return(false)); - EXPECT_EQ(IPMI_CC_INVALID, openBlob(&mgr, request, reply, &dataLen)); + EXPECT_EQ(IPMI_CC_UNSPECIFIED_ERROR, + openBlob(&mgr, request, reply, &dataLen)); } TEST(BlobOpenTest, BlobOpenReturnsOk) |