diff options
author | winsvega <winsvega@mail.ru> | 2015-02-23 20:02:19 +0800 |
---|---|---|
committer | winsvega <winsvega@mail.ru> | 2015-02-23 20:02:19 +0800 |
commit | a3d2df8dbc14c330522d63cdad420a7251cd3f17 (patch) | |
tree | 53e74a1bcbc51a458b66572146292cad1d7a5572 /TestHelper.cpp | |
parent | 87912744c76f43f3bdfdb519aad8cd3d90d9604e (diff) | |
parent | 9a764055ac69ceb9e5a16c4c930730255db13236 (diff) | |
download | dexon-solidity-a3d2df8dbc14c330522d63cdad420a7251cd3f17.tar dexon-solidity-a3d2df8dbc14c330522d63cdad420a7251cd3f17.tar.gz dexon-solidity-a3d2df8dbc14c330522d63cdad420a7251cd3f17.tar.bz2 dexon-solidity-a3d2df8dbc14c330522d63cdad420a7251cd3f17.tar.lz dexon-solidity-a3d2df8dbc14c330522d63cdad420a7251cd3f17.tar.xz dexon-solidity-a3d2df8dbc14c330522d63cdad420a7251cd3f17.tar.zst dexon-solidity-a3d2df8dbc14c330522d63cdad420a7251cd3f17.zip |
Merge branch 'develop' of https://github.com/ethereum/cpp-ethereum into develop
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; } |