aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLianaHus <liana@ethdev.com>2015-09-22 20:03:09 +0800
committerLianaHus <liana@ethdev.com>2015-09-22 20:03:09 +0800
commited76798406f387c8bd138ed22cd0b1687a79fa32 (patch)
tree611bdc88260d63fc63a6a5ec977ffd16b79db38f /test
parente50400082b1fe3b1086d8ebb874b12b30ef2ff92 (diff)
downloaddexon-solidity-ed76798406f387c8bd138ed22cd0b1687a79fa32.tar.gz
dexon-solidity-ed76798406f387c8bd138ed22cd0b1687a79fa32.tar.zst
dexon-solidity-ed76798406f387c8bd138ed22cd0b1687a79fa32.zip
fixed the test
Diffstat (limited to 'test')
-rw-r--r--test/libsolidity/SolidityEndToEndTest.cpp5
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)
{