Skip to content

Commit

Permalink
Merge pull request #74 from zama-ai/fix/path-to-abstracts
Browse files Browse the repository at this point in the history
fixture: fix path to abstract for python test scripts
  • Loading branch information
leventdem authored Jul 10, 2023
2 parents 2828fc7 + e23b201 commit a1946aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/tests/ERC20.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class Reencrypt(EIP712Struct):
"sources": {"EncryptedERC20.sol": {"content": file_contents}},
"settings": {
"remappings": ['@openzeppelin/contracts={0}/node_modules/@openzeppelin/contracts'.format(os.getcwd()),
'abstract={0}/examples/abstract'.format(os.getcwd())],
'abstracts={0}/abstracts'.format(os.getcwd())],
"outputSelection": {
"*": {
"*": ["abi", "metadata", "evm.bytecode", "evm.bytecode.sourceMap"]
Expand Down
2 changes: 1 addition & 1 deletion demo_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ class Reencrypt(EIP712Struct):
"sources": {"EncryptedERC20.sol": {"content": file_contents}},
"settings": {
"remappings": [ '@openzeppelin/contracts={0}/node_modules/@openzeppelin/contracts'.format(os.getcwd()),
'abstract={0}/examples/abstract'.format(os.getcwd()) ],
'abstracts={0}/abstracts'.format(os.getcwd()) ],
"outputSelection": {
"*": {
"*": ["abi", "metadata", "evm.bytecode", "evm.bytecode.sourceMap"]
Expand Down

0 comments on commit a1946aa

Please sign in to comment.