mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix tests.
This commit is contained in:
parent
746266b8fc
commit
ee3efa67a8
@ -684,7 +684,7 @@ BOOST_AUTO_TEST_CASE(payable_function)
|
||||
checkInterface(sourceCode, interface);
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(payable_fallback_unction)
|
||||
BOOST_AUTO_TEST_CASE(payable_fallback_function)
|
||||
{
|
||||
char const* sourceCode = R"(
|
||||
contract test {
|
||||
|
@ -8006,7 +8006,7 @@ BOOST_AUTO_TEST_CASE(function_delete_stack)
|
||||
contract C {
|
||||
function a() returns (uint) { return 7; }
|
||||
function test() returns (uint) {
|
||||
y = a;
|
||||
var y = a;
|
||||
delete y;
|
||||
y();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user