aboutsummaryrefslogtreecommitdiffstats
path: root/test/contracts/AuctionRegistrar.cpp
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2016-11-28 08:21:01 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2016-11-30 05:54:27 +0800
commita226db73384ac1b588e07a28dd8f1ff92cbdf6f7 (patch)
tree67ea757fe4786f70d6343234f1c8dc86de7059f4 /test/contracts/AuctionRegistrar.cpp
parent4af30cc5183d83afd8a112bbc29e5c7beb3b7c1a (diff)
downloaddexon-solidity-a226db73384ac1b588e07a28dd8f1ff92cbdf6f7.tar.gz
dexon-solidity-a226db73384ac1b588e07a28dd8f1ff92cbdf6f7.tar.zst
dexon-solidity-a226db73384ac1b588e07a28dd8f1ff92cbdf6f7.zip
Split out Solidity-specific part of ExecutionFramework
Diffstat (limited to 'test/contracts/AuctionRegistrar.cpp')
-rw-r--r--test/contracts/AuctionRegistrar.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/contracts/AuctionRegistrar.cpp b/test/contracts/AuctionRegistrar.cpp
index 0b573bca..c156efd1 100644
--- a/test/contracts/AuctionRegistrar.cpp
+++ b/test/contracts/AuctionRegistrar.cpp
@@ -213,7 +213,7 @@ contract GlobalRegistrar is Registrar, AuctionSystem {
static unique_ptr<bytes> s_compiledRegistrar;
-class AuctionRegistrarTestFramework: public ExecutionFramework
+class AuctionRegistrarTestFramework: public SolidityExecutionFramework
{
protected:
void deployRegistrar()
@@ -229,11 +229,11 @@ protected:
BOOST_REQUIRE(!m_output.empty());
}
- using ContractInterface = ExecutionFramework::ContractInterface;
+ using ContractInterface = SolidityExecutionFramework::ContractInterface;
class RegistrarInterface: public ContractInterface
{
public:
- RegistrarInterface(ExecutionFramework& _framework): ContractInterface(_framework) {}
+ RegistrarInterface(SolidityExecutionFramework& _framework): ContractInterface(_framework) {}
void reserve(string const& _name)
{
callString("reserve", _name);