Fix tests.

This commit is contained in:
chriseth 2016-11-09 17:51:48 +01:00
parent 746266b8fc
commit ee3efa67a8
2 changed files with 2 additions and 2 deletions

View File

@ -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 {

View File

@ -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();
}