diff options
author | chriseth <chris@ethereum.org> | 2017-09-20 17:52:41 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2017-09-22 22:17:28 +0800 |
commit | a844bbda48564d65033522a64cef30bff5dea973 (patch) | |
tree | 008494a0618051e4d71a2e28b94e436dc34ece6a /test/contracts/FixedFeeRegistrar.cpp | |
parent | ab8ce58a3e522cfe8d0a36132e5e0b305d4ca052 (diff) | |
download | dexon-solidity-a844bbda48564d65033522a64cef30bff5dea973.tar dexon-solidity-a844bbda48564d65033522a64cef30bff5dea973.tar.gz dexon-solidity-a844bbda48564d65033522a64cef30bff5dea973.tar.bz2 dexon-solidity-a844bbda48564d65033522a64cef30bff5dea973.tar.lz dexon-solidity-a844bbda48564d65033522a64cef30bff5dea973.tar.xz dexon-solidity-a844bbda48564d65033522a64cef30bff5dea973.tar.zst dexon-solidity-a844bbda48564d65033522a64cef30bff5dea973.zip |
Cleanup test helper macros.
Diffstat (limited to 'test/contracts/FixedFeeRegistrar.cpp')
-rw-r--r-- | test/contracts/FixedFeeRegistrar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/contracts/FixedFeeRegistrar.cpp b/test/contracts/FixedFeeRegistrar.cpp index 967d60b6..8327999d 100644 --- a/test/contracts/FixedFeeRegistrar.cpp +++ b/test/contracts/FixedFeeRegistrar.cpp @@ -136,7 +136,7 @@ protected: m_compiler.reset(false); m_compiler.addSource("", registrarCode); m_compiler.setOptimiserSettings(m_optimize, m_optimizeRuns); - ETH_TEST_REQUIRE_NO_THROW(m_compiler.compile(), "Compiling contract failed"); + BOOST_REQUIRE_MESSAGE(m_compiler.compile(), "Compiling contract failed"); s_compiledRegistrar.reset(new bytes(m_compiler.object("FixedFeeRegistrar").bytecode)); } sendMessage(*s_compiledRegistrar, true); |