aboutsummaryrefslogtreecommitdiffstats
path: root/test/contracts/AuctionRegistrar.cpp
diff options
context:
space:
mode:
authorRhett Aultman <roadriverrail@gmail.com>2016-12-16 23:54:18 +0800
committerRhett Aultman <rhett.aultman@meraki.net>2017-01-17 01:32:57 +0800
commitf8914c6b281f398d6084f10708233bf79d633ef0 (patch)
tree99ffe783e3ddd61ffab296afabbf1c93933bb47a /test/contracts/AuctionRegistrar.cpp
parentf10bf36ae3681169be7c75dac32567f1746c529d (diff)
downloaddexon-solidity-f8914c6b281f398d6084f10708233bf79d633ef0.tar.gz
dexon-solidity-f8914c6b281f398d6084f10708233bf79d633ef0.tar.zst
dexon-solidity-f8914c6b281f398d6084f10708233bf79d633ef0.zip
Fix contract lookup in tests
The fully-qualified name of a contract with no source unit is :<Name> instead of just <Name>, so the test system needed to be adjusted accordingly.
Diffstat (limited to 'test/contracts/AuctionRegistrar.cpp')
-rw-r--r--test/contracts/AuctionRegistrar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/contracts/AuctionRegistrar.cpp b/test/contracts/AuctionRegistrar.cpp
index fb8c1c68..0169648e 100644
--- a/test/contracts/AuctionRegistrar.cpp
+++ b/test/contracts/AuctionRegistrar.cpp
@@ -224,7 +224,7 @@ protected:
m_compiler.reset(false);
m_compiler.addSource("", registrarCode);
ETH_TEST_REQUIRE_NO_THROW(m_compiler.compile(m_optimize, m_optimizeRuns), "Compiling contract failed");
- s_compiledRegistrar.reset(new bytes(m_compiler.object("GlobalRegistrar").bytecode));
+ s_compiledRegistrar.reset(new bytes(m_compiler.object(":GlobalRegistrar").bytecode));
}
sendMessage(*s_compiledRegistrar, true);
BOOST_REQUIRE(!m_output.empty());