Skip to content

Commit

Permalink
test: ensure duplicate imports does not malfunction [APE-1102] (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Sep 6, 2023
1 parent 7757892 commit 30f087a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/contracts/Imports.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ import {
Struct5
} from "./NumerousDefinitions.sol";
import "@styleofbrownie/BrownieStyleDependency.sol";
// Purposely repeat an import to test how the plugin handles that.
import "@styleofbrownie/BrownieStyleDependency.sol";

import "@gnosis/common/Enum.sol";

contract Imports {
function foo() pure public returns(bool) {
return true;
Expand Down

0 comments on commit 30f087a

Please sign in to comment.