aboutsummaryrefslogtreecommitdiffstats
path: root/TestHelper.cpp
diff options
context:
space:
mode:
authorCJentzsch <jentzsch.software@gmail.com>2015-02-23 15:29:56 +0800
committerCJentzsch <jentzsch.software@gmail.com>2015-02-23 15:29:56 +0800
commit5554861fb3a135f2ee962f2ee2a1fd321143ea6e (patch)
tree5914e81cd76c62408052d91f6838a7580421b7ef /TestHelper.cpp
parent4144c63d9f1b7b25c4aaee29c21f412590aefe29 (diff)
downloaddexon-solidity-5554861fb3a135f2ee962f2ee2a1fd321143ea6e.tar.gz
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.cpp4
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;
}