aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-05-07 01:02:56 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-05-19 22:57:36 +0800
commit4bf3cbb09a42131dba27b080a4917f30284959d3 (patch)
tree04623e38aee222c71192d42b132dc56a35fe621f /test
parent8169e149c98b14861cc6467f9f796010f617c521 (diff)
downloaddexon-solidity-4bf3cbb09a42131dba27b080a4917f30284959d3.tar
dexon-solidity-4bf3cbb09a42131dba27b080a4917f30284959d3.tar.gz
dexon-solidity-4bf3cbb09a42131dba27b080a4917f30284959d3.tar.bz2
dexon-solidity-4bf3cbb09a42131dba27b080a4917f30284959d3.tar.lz
dexon-solidity-4bf3cbb09a42131dba27b080a4917f30284959d3.tar.xz
dexon-solidity-4bf3cbb09a42131dba27b080a4917f30284959d3.tar.zst
dexon-solidity-4bf3cbb09a42131dba27b080a4917f30284959d3.zip
Use CompilerStack.contractABI directly
Diffstat (limited to 'test')
-rw-r--r--test/libsolidity/SolidityABIJSON.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libsolidity/SolidityABIJSON.cpp b/test/libsolidity/SolidityABIJSON.cpp
index bdcc5b10..1ebccc13 100644
--- a/test/libsolidity/SolidityABIJSON.cpp
+++ b/test/libsolidity/SolidityABIJSON.cpp
@@ -44,7 +44,7 @@ public:
{
ETH_TEST_REQUIRE_NO_THROW(m_compilerStack.parseAndAnalyze("pragma solidity >=0.0;\n" + _code), "Parsing contract failed");
- Json::Value generatedInterface = m_compilerStack.metadata("", DocumentationType::ABIInterface);
+ Json::Value generatedInterface = m_compilerStack.contractABI("");
Json::Value expectedInterface;
m_reader.parse(_expectedInterfaceString, expectedInterface);
BOOST_CHECK_MESSAGE(