Skip to content

Commit 2685c21

Browse files
committed
[tests] small whitespace fixup
Required after scripted-diff in previous commit.
1 parent e993696 commit 2685c21

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/coins_tests.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ static void CheckAddCoinBase(CAmount base_value, CAmount cache_value, CAmount mo
742742
template <typename... Args>
743743
static void CheckAddCoin(Args&&... args)
744744
{
745-
for (const CAmount base_value : {ABSENT, SPENT , VALUE1})
745+
for (const CAmount base_value : {ABSENT, SPENT, VALUE1})
746746
CheckAddCoinBase(base_value, std::forward<Args>(args)...);
747747
}
748748

@@ -854,8 +854,8 @@ BOOST_AUTO_TEST_CASE(ccoins_write)
854854
// they would be too repetitive (the parent cache is never updated in these
855855
// cases). The loop below covers these cases and makes sure the parent cache
856856
// is always left unchanged.
857-
for (const CAmount parent_value : {ABSENT, SPENT , VALUE1})
858-
for (const CAmount child_value : {ABSENT, SPENT , VALUE2})
857+
for (const CAmount parent_value : {ABSENT, SPENT, VALUE1})
858+
for (const CAmount child_value : {ABSENT, SPENT, VALUE2})
859859
for (const char parent_flags : parent_value == ABSENT ? ABSENT_FLAGS : FLAGS)
860860
for (const char child_flags : child_value == ABSENT ? ABSENT_FLAGS : CLEAN_FLAGS)
861861
CheckWriteCoins(parent_value, child_value, parent_value, parent_flags, child_flags, parent_flags);

0 commit comments

Comments
 (0)