Skip to content

Commit

Permalink
Revert "Move clashing libraries to common source in test"
Browse files Browse the repository at this point in the history
This reverts commit c4a9ca5.
  • Loading branch information
roadriverrail authored and Rhett Aultman committed Jan 16, 2017
1 parent 5a2331a commit a7f8a19
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/libsolidity/Imports.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ BOOST_AUTO_TEST_CASE(simple_alias)
BOOST_AUTO_TEST_CASE(library_name_clash)
{
CompilerStack c;
c.addSource("a", "library A {} library A {} pragma solidity >=0.0;");
c.addSource("a", "library A {} pragma solidity >=0.0;");
c.addSource("b", "library A {} pragma solidity >=0.0;");
BOOST_CHECK(!c.compile());
}

Expand Down

0 comments on commit a7f8a19

Please sign in to comment.