mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
fixed the output of the test
This commit is contained in:
parent
18475f8ae1
commit
9b956e809d
@ -499,19 +499,18 @@ BOOST_AUTO_TEST_CASE(constructor_abi)
|
|||||||
{
|
{
|
||||||
char const* sourceCode = R"(
|
char const* sourceCode = R"(
|
||||||
contract test {
|
contract test {
|
||||||
function test() {
|
function test() {
|
||||||
}
|
}
|
||||||
})";
|
})";
|
||||||
|
|
||||||
char const* interface = R"("
|
char const* interface = R"([
|
||||||
[
|
{
|
||||||
{
|
"constant" : false,
|
||||||
"constant" : false,
|
"inputs" : [],
|
||||||
"inputs" : [],
|
"name" : "test",
|
||||||
"name" : "test",
|
"outputs" : [],
|
||||||
"outputs" : [],
|
"type" : "constructor"
|
||||||
"type" : "constructor"
|
}
|
||||||
}
|
|
||||||
])";
|
])";
|
||||||
checkInterface(sourceCode, interface);
|
checkInterface(sourceCode, interface);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user