Update tests.

This commit is contained in:
chriseth
2020-07-07 12:16:18 +02:00
parent 747aeb4999
commit 9743390a53
325 changed files with 757 additions and 776 deletions
+2 -2
View File
@@ -173,7 +173,7 @@ BOOST_AUTO_TEST_CASE(store_keccak256)
char const* sourceCode = R"(
contract test {
bytes32 public shaValue;
constructor() public {
constructor() {
shaValue = keccak256(abi.encodePacked(this));
}
}
@@ -187,7 +187,7 @@ BOOST_AUTO_TEST_CASE(updating_store)
contract test {
uint data;
uint data2;
constructor() public {
constructor() {
data = 1;
data = 2;
data2 = 0;