fixed the output of the test

This commit is contained in:
Liana Husikyan 2015-04-17 15:26:12 +02:00
parent 18475f8ae1
commit 9b956e809d

View File

@ -499,19 +499,18 @@ BOOST_AUTO_TEST_CASE(constructor_abi)
{
char const* sourceCode = R"(
contract test {
function test() {
function test() {
}
})";
char const* interface = R"("
[
{
"constant" : false,
"inputs" : [],
"name" : "test",
"outputs" : [],
"type" : "constructor"
}
char const* interface = R"([
{
"constant" : false,
"inputs" : [],
"name" : "test",
"outputs" : [],
"type" : "constructor"
}
])";
checkInterface(sourceCode, interface);
}