diff options
author | LianaHus <liana@ethdev.com> | 2015-09-22 20:03:09 +0800 |
---|---|---|
committer | LianaHus <liana@ethdev.com> | 2015-09-22 20:03:09 +0800 |
commit | ed76798406f387c8bd138ed22cd0b1687a79fa32 (patch) | |
tree | 611bdc88260d63fc63a6a5ec977ffd16b79db38f /test/libsolidity | |
parent | e50400082b1fe3b1086d8ebb874b12b30ef2ff92 (diff) | |
download | dexon-solidity-ed76798406f387c8bd138ed22cd0b1687a79fa32.tar dexon-solidity-ed76798406f387c8bd138ed22cd0b1687a79fa32.tar.gz dexon-solidity-ed76798406f387c8bd138ed22cd0b1687a79fa32.tar.bz2 dexon-solidity-ed76798406f387c8bd138ed22cd0b1687a79fa32.tar.lz dexon-solidity-ed76798406f387c8bd138ed22cd0b1687a79fa32.tar.xz dexon-solidity-ed76798406f387c8bd138ed22cd0b1687a79fa32.tar.zst dexon-solidity-ed76798406f387c8bd138ed22cd0b1687a79fa32.zip |
fixed the test
Diffstat (limited to 'test/libsolidity')
-rw-r--r-- | test/libsolidity/SolidityEndToEndTest.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp index 1f5a92e7..98da1e27 100644 --- a/test/libsolidity/SolidityEndToEndTest.cpp +++ b/test/libsolidity/SolidityEndToEndTest.cpp @@ -5297,10 +5297,7 @@ BOOST_AUTO_TEST_CASE(strings_in_struct) } function buggystruct(){ - bug.first = 10; - bug.second = 20; - bug.third = 30; - bug.last = "asdfghjkl"; + bug = Buggy(10, 20, 30, "asdfghjkl"); } function getFirst() returns (uint) { |