diff options
author | CJentzsch <jentzsch.software@gmail.com> | 2015-02-23 15:29:56 +0800 |
---|---|---|
committer | CJentzsch <jentzsch.software@gmail.com> | 2015-02-23 15:29:56 +0800 |
commit | 5554861fb3a135f2ee962f2ee2a1fd321143ea6e (patch) | |
tree | 5914e81cd76c62408052d91f6838a7580421b7ef /TestHelper.cpp | |
parent | 4144c63d9f1b7b25c4aaee29c21f412590aefe29 (diff) | |
download | dexon-solidity-5554861fb3a135f2ee962f2ee2a1fd321143ea6e.tar dexon-solidity-5554861fb3a135f2ee962f2ee2a1fd321143ea6e.tar.gz dexon-solidity-5554861fb3a135f2ee962f2ee2a1fd321143ea6e.tar.bz2 dexon-solidity-5554861fb3a135f2ee962f2ee2a1fd321143ea6e.tar.lz dexon-solidity-5554861fb3a135f2ee962f2ee2a1fd321143ea6e.tar.xz dexon-solidity-5554861fb3a135f2ee962f2ee2a1fd321143ea6e.tar.zst dexon-solidity-5554861fb3a135f2ee962f2ee2a1fd321143ea6e.zip |
fix too-small-address-length bug in transaction
Diffstat (limited to 'TestHelper.cpp')
-rw-r--r-- | TestHelper.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TestHelper.cpp b/TestHelper.cpp index ff6939a5..71d38103 100644 --- a/TestHelper.cpp +++ b/TestHelper.cpp @@ -475,11 +475,11 @@ void executeTests(const string& _name, const string& _testPathAppendix, std::fun } catch (Exception const& _e) { - BOOST_ERROR("Failed test with Exception: " << diagnostic_information(_e)); + BOOST_ERROR("Failed filling test with Exception: " << diagnostic_information(_e)); } catch (std::exception const& _e) { - BOOST_ERROR("Failed test with Exception: " << _e.what()); + BOOST_ERROR("Failed filling test with Exception: " << _e.what()); } break; } |