Rebase update.

This commit is contained in:
chriseth 2019-02-25 14:30:34 +01:00
parent cc88c517a2
commit 94e2afff81

View File

@ -41,9 +41,9 @@ namespace test
class YulInterpreterTest: public dev::solidity::test::TestCase
{
public:
static std::unique_ptr<TestCase> create(std::string const& _filename)
static std::unique_ptr<TestCase> create(Config const& _config)
{
return std::unique_ptr<TestCase>(new YulInterpreterTest(_filename));
return std::unique_ptr<TestCase>(new YulInterpreterTest(_config.filename));
}
explicit YulInterpreterTest(std::string const& _filename);