diff options
author | Gav Wood <g@ethdev.com> | 2015-06-17 19:00:57 +0800 |
---|---|---|
committer | Gav Wood <g@ethdev.com> | 2015-06-17 19:00:57 +0800 |
commit | 93932446fd20eab9c46f855bb52f4b4e5e2a4c7e (patch) | |
tree | 79f5f21950f2a3d06d14f5835cdf857fc3176872 | |
parent | 84125143dba6c1e4b44d66a348a4b2d604e00f4d (diff) | |
parent | 45831ea950103fb7f1dac040e236b6fe50749796 (diff) | |
download | dexon-solidity-93932446fd20eab9c46f855bb52f4b4e5e2a4c7e.tar.gz dexon-solidity-93932446fd20eab9c46f855bb52f4b4e5e2a4c7e.tar.zst dexon-solidity-93932446fd20eab9c46f855bb52f4b4e5e2a4c7e.zip |
Merge pull request #2208 from chriseth/libdevcoreStuff
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; |