diff options
author | Yoichi Hirai <i@yoichihirai.com> | 2017-12-12 18:12:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-12 18:12:18 +0800 |
commit | 14707b27e23a640274ce507c1c9a3d862f2c2b7f (patch) | |
tree | 762a58a830d3fd77bcf3032f5df3d91c827b01be /test/libsolidity/SolidityEndToEndTest.cpp | |
parent | a0e67dec4683346becf4c864b3c7b7c4ab90bb71 (diff) | |
parent | 14fd647b852146cd885426d04bffffbd1b7c08a0 (diff) | |
download | dexon-solidity-14707b27e23a640274ce507c1c9a3d862f2c2b7f.tar.gz dexon-solidity-14707b27e23a640274ce507c1c9a3d862f2c2b7f.tar.zst dexon-solidity-14707b27e23a640274ce507c1c9a3d862f2c2b7f.zip |
Merge pull request #3183 from federicobond/fix-event-parsing
Fix event parsing. Refs #3175
Diffstat (limited to 'test/libsolidity/SolidityEndToEndTest.cpp')
-rw-r--r-- | test/libsolidity/SolidityEndToEndTest.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp index 05dc9ba3..f5f7e64a 100644 --- a/test/libsolidity/SolidityEndToEndTest.cpp +++ b/test/libsolidity/SolidityEndToEndTest.cpp @@ -2971,7 +2971,7 @@ BOOST_AUTO_TEST_CASE(event_no_arguments) { char const* sourceCode = R"( contract ClientReceipt { - event Deposit; + event Deposit(); function deposit() { Deposit(); } @@ -3013,7 +3013,7 @@ BOOST_AUTO_TEST_CASE(events_with_same_name) { char const* sourceCode = R"( contract ClientReceipt { - event Deposit; + event Deposit(); event Deposit(address _addr); event Deposit(address _addr, uint _amount); function deposit() returns (uint) { @@ -3059,7 +3059,7 @@ BOOST_AUTO_TEST_CASE(events_with_same_name_inherited) { char const* sourceCode = R"( contract A { - event Deposit; + event Deposit(); } contract B { |