diff options
author | chriseth <c@ethdev.com> | 2015-06-16 20:58:03 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-06-16 21:09:19 +0800 |
commit | 45831ea950103fb7f1dac040e236b6fe50749796 (patch) | |
tree | d84c5a7996a3bd56aef95c2f38ccfc50fcede2ad | |
parent | f00f1ef2663209de6860a7d21d934c89f35f16b0 (diff) | |
download | dexon-solidity-45831ea950103fb7f1dac040e236b6fe50749796.tar.gz dexon-solidity-45831ea950103fb7f1dac040e236b6fe50749796.tar.zst dexon-solidity-45831ea950103fb7f1dac040e236b6fe50749796.zip |
Some changes in libdevcore.
-rw-r--r-- | TestHelper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TestHelper.cpp b/TestHelper.cpp index 733ccb6d..bca0528f 100644 --- a/TestHelper.cpp +++ b/TestHelper.cpp @@ -598,7 +598,7 @@ void userDefinedTest(std::function<void(json_spirit::mValue&, bool)> doTests) { cnote << "Testing user defined test: " << filename; json_spirit::mValue v; - string s = asString(contents(filename)); + string s = contentsString(filename); BOOST_REQUIRE_MESSAGE(s.length() > 0, "Contents of " + filename + " is empty. "); json_spirit::read_string(s, v); json_spirit::mObject oSingleTest; |