update folder structure
This commit is contained in:
parent
12341008b8
commit
28f635f0ba
|
@ -1,5 +1,5 @@
|
|||
const TestUtils = require("./TestUtils.js")
|
||||
const Identity = artifacts.require("./Identity.sol");
|
||||
const Identity = artifacts.require("./identity/Identity.sol");
|
||||
|
||||
contract('Identity', function(accounts) {
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ def identiy_tester():
|
|||
tester.s = tester.Chain()
|
||||
from viper import compiler
|
||||
tester.languages['viper'] = compiler.Compiler()
|
||||
contract_code = open('contracts/erc_725.v.py').read()
|
||||
contract_code = open('contracts/identity/erc_725.v.py').read()
|
||||
tester.c = tester.s.contract(
|
||||
contract_code,
|
||||
language='viper',
|
||||
|
|
|
@ -11,7 +11,7 @@ def identiy_tester():
|
|||
tester.s = tester.Chain()
|
||||
from viper import compiler
|
||||
tester.languages['viper'] = compiler.Compiler()
|
||||
contract_code = open('contracts/erc_735.v.py').read()
|
||||
contract_code = open('contracts/identity/erc_735.v.py').read()
|
||||
tester.c = tester.s.contract(
|
||||
contract_code,
|
||||
language='viper',
|
||||
|
|
Loading…
Reference in New Issue