aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDenton Liu <liu.denton+github@gmail.com>2016-08-25 03:31:59 +0800
committerDenton Liu <liu.denton+github@gmail.com>2016-08-27 01:33:42 +0800
commitff756bc94d7129844f8f3492cc07807a78b973bc (patch)
treea2418dea3d2e5da316321bc93fb6af05b71b0667 /test
parentd2144b03c7ef6f7189ba289f5df1a445c68f3b68 (diff)
downloaddexon-solidity-ff756bc94d7129844f8f3492cc07807a78b973bc.tar
dexon-solidity-ff756bc94d7129844f8f3492cc07807a78b973bc.tar.gz
dexon-solidity-ff756bc94d7129844f8f3492cc07807a78b973bc.tar.bz2
dexon-solidity-ff756bc94d7129844f8f3492cc07807a78b973bc.tar.lz
dexon-solidity-ff756bc94d7129844f8f3492cc07807a78b973bc.tar.xz
dexon-solidity-ff756bc94d7129844f8f3492cc07807a78b973bc.tar.zst
dexon-solidity-ff756bc94d7129844f8f3492cc07807a78b973bc.zip
Make tests more consistent in style
Diffstat (limited to 'test')
-rw-r--r--test/contracts/AuctionRegistrar.cpp8
-rw-r--r--test/libsolidity/SolidityEndToEndTest.cpp3
-rw-r--r--test/libsolidity/SolidityParser.cpp2
3 files changed, 5 insertions, 8 deletions
diff --git a/test/contracts/AuctionRegistrar.cpp b/test/contracts/AuctionRegistrar.cpp
index 3b1d1165..6eba2706 100644
--- a/test/contracts/AuctionRegistrar.cpp
+++ b/test/contracts/AuctionRegistrar.cpp
@@ -130,9 +130,7 @@ contract GlobalRegistrar is Registrar, AuctionSystem {
if (previousOwner != 0) {
if (!record.owner.send(auction.sumOfBids - auction.highestBid / 100))
throw;
- }
- else
- {
+ } else {
if (!auction.highestBidder.send(auction.highestBid - auction.secondHighestBid))
throw;
}
@@ -147,9 +145,7 @@ contract GlobalRegistrar is Registrar, AuctionSystem {
if (now < m_toRecord[_name].renewalDate)
throw;
bid(_name, msg.sender, msg.value);
- }
- else
- {
+ } else {
Record record = m_toRecord[_name];
if (record.owner != 0)
throw;
diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp
index 8a61907a..8f645170 100644
--- a/test/libsolidity/SolidityEndToEndTest.cpp
+++ b/test/libsolidity/SolidityEndToEndTest.cpp
@@ -2549,8 +2549,9 @@ BOOST_AUTO_TEST_CASE(event)
if (_manually) {
bytes32 s = 0x19dacbf83c5de6658e14cbf7bcae5c15eca2eedecf1c66fbca928e4d351bea0f;
log3(bytes32(msg.value), s, bytes32(msg.sender), _id);
- } else
+ } else {
Deposit(msg.sender, _id, msg.value);
+ }
}
}
)";
diff --git a/test/libsolidity/SolidityParser.cpp b/test/libsolidity/SolidityParser.cpp
index 909d18c9..07cb0751 100644
--- a/test/libsolidity/SolidityParser.cpp
+++ b/test/libsolidity/SolidityParser.cpp
@@ -540,7 +540,7 @@ BOOST_AUTO_TEST_CASE(if_statement)
{
char const* text = "contract test {\n"
" function fun(uint256 a) {\n"
- " if (a >= 8) return 2; else { var b = 7; }\n"
+ " if (a >= 8) { return 2 }; else { var b = 7; }\n"
" }\n"
"}\n";
BOOST_CHECK(successParse(text));