Browse Source

Replace spaces with tabs

cl-refactor
Paweł Bylica 10 years ago
parent
commit
992abb31ed
  1. 10
      test/TestHelper.cpp

10
test/TestHelper.cpp

@ -330,11 +330,11 @@ void checkStorage(map<u256, u256> _expectedStore, map<u256, u256> _resultStore,
}
}
for (auto&& resultStorePair : _resultStore)
{
if (!_expectedStore.count(resultStorePair.first))
BOOST_ERROR(_expectedAddr << ": unexpected store key " << resultStorePair.first);
}
for (auto&& resultStorePair : _resultStore)
{
if (!_expectedStore.count(resultStorePair.first))
BOOST_ERROR(_expectedAddr << ": unexpected store key " << resultStorePair.first);
}
}
void checkLog(LogEntries _resultLogs, LogEntries _expectedLogs)

Loading…
Cancel
Save