Skip to content
Snippets Groups Projects
Verified Commit 5e17247b authored by Timm Fitschen's avatar Timm Fitschen
Browse files

Merge branch 'f-error-handling' into f-insert

parents 724d4472 85a62398
No related branches found
No related tags found
1 merge request!3TST: Add Tests for insert and delete
Pipeline #11089 passed
This commit is part of merge request !3. Comments created here will be created in the context of that merge request.
......@@ -79,8 +79,8 @@ TEST(test_transaction, retrieve_non_existing) {
transaction->ExecuteAsynchronously();
auto status = transaction->WaitForIt();
EXPECT_EQ(status.GetCode(), TransactionStatus::SUCCESS().GetCode());
ASSERT_EQ(status.GetCode(), StatusCode::SUCCESS);
EXPECT_EQ(status.GetCode(), TransactionStatus::TRANSACTION_ERROR().GetCode());
ASSERT_EQ(status.GetCode(), StatusCode::GENERIC_TRANSACTION_ERROR);
const auto &result_set =
dynamic_cast<const UniqueResult &>(transaction->GetResultSet());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment