Merge pull request #7639

53683d7 Warnings: fix ut/levin.cpp missing braces (mj-xmr)
This commit is contained in:
luigi1111 2021-04-06 12:24:29 -05:00
commit 1475236810
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
1 changed files with 4 additions and 1 deletions

View File

@ -664,8 +664,9 @@ TEST_F(levin_notify, stem_no_outs_without_padding)
ASSERT_LT(0u, io_service_.poll());
EXPECT_EQ(txs, events_.take_relayed(cryptonote::relay_method::fluff));
if (events_.has_stem_txes())
{
EXPECT_EQ(txs, events_.take_relayed(cryptonote::relay_method::stem));
}
notifier.run_fluff();
ASSERT_LT(0u, io_service_.poll());
@ -1034,7 +1035,9 @@ TEST_F(levin_notify, stem_no_outs_with_padding)
ASSERT_LT(0u, io_service_.poll());
EXPECT_EQ(txs, events_.take_relayed(cryptonote::relay_method::fluff));
if (events_.has_stem_txes())
{
EXPECT_EQ(txs, events_.take_relayed(cryptonote::relay_method::stem));
}
notifier.run_fluff();
ASSERT_LT(0u, io_service_.poll());