diff options
author | djudjuu <julfaber@gmail.com> | 2017-05-31 01:25:54 +0800 |
---|---|---|
committer | djudjuu <julfaber@gmail.com> | 2017-05-31 01:25:54 +0800 |
commit | b011ddfae351c5a4883c88898390ea863be9a410 (patch) | |
tree | 017ea62b78e1b250655d33e9d610f2f36d3626fe /test/libsolidity | |
parent | 2e7190534be9d6994cdd485b1d94400e039693d3 (diff) | |
download | dexon-solidity-b011ddfae351c5a4883c88898390ea863be9a410.tar.gz dexon-solidity-b011ddfae351c5a4883c88898390ea863be9a410.tar.zst dexon-solidity-b011ddfae351c5a4883c88898390ea863be9a410.zip |
adjusted test-cases
Diffstat (limited to 'test/libsolidity')
-rw-r--r-- | test/libsolidity/JSONCompiler.cpp | 2 | ||||
-rw-r--r-- | test/libsolidity/StandardCompiler.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/libsolidity/JSONCompiler.cpp b/test/libsolidity/JSONCompiler.cpp index 6aec59ab..e920c73c 100644 --- a/test/libsolidity/JSONCompiler.cpp +++ b/test/libsolidity/JSONCompiler.cpp @@ -92,7 +92,7 @@ BOOST_AUTO_TEST_CASE(basic_compilation) BOOST_CHECK(dev::jsonCompactPrint(result["sources"]["fileA"]["AST"]) == "{\"attributes\":{\"absolutePath\":\"fileA\",\"exportedSymbols\":{\"A\":[1]}}," "\"children\":[{\"attributes\":{\"baseContracts\":[null],\"contractDependencies\":[null]," - "\"contractKind\":\"contract\",\"fullyImplemented\":true,\"linearizedBaseContracts\":[1]," + "\"contractKind\":\"contract\",\"documentation\":null,\"fullyImplemented\":true,\"linearizedBaseContracts\":[1]," "\"name\":\"A\",\"nodes\":[null],\"scope\":2},\"id\":1,\"name\":\"ContractDefinition\"," "\"src\":\"0:14:0\"}],\"id\":2,\"name\":\"SourceUnit\",\"src\":\"0:14:0\"}"); } diff --git a/test/libsolidity/StandardCompiler.cpp b/test/libsolidity/StandardCompiler.cpp index 050ca500..92bb471b 100644 --- a/test/libsolidity/StandardCompiler.cpp +++ b/test/libsolidity/StandardCompiler.cpp @@ -217,7 +217,7 @@ BOOST_AUTO_TEST_CASE(basic_compilation) BOOST_CHECK(dev::jsonCompactPrint(result["sources"]["fileA"]["legacyAST"]) == "{\"attributes\":{\"absolutePath\":\"fileA\",\"exportedSymbols\":{\"A\":[1]}},\"children\":" "[{\"attributes\":{\"baseContracts\":[null],\"contractDependencies\":[null],\"contractKind\":\"contract\"," - "\"fullyImplemented\":true,\"linearizedBaseContracts\":[1],\"name\":\"A\",\"nodes\":[null],\"scope\":2}," + "\"documentation\":null,\"fullyImplemented\":true,\"linearizedBaseContracts\":[1],\"name\":\"A\",\"nodes\":[null],\"scope\":2}," "\"id\":1,\"name\":\"ContractDefinition\",\"src\":\"0:14:0\"}],\"id\":2,\"name\":\"SourceUnit\",\"src\":\"0:14:0\"}"); } |