Skip to content

Commit

Permalink
Merge PR #65: Renamed aux.js to utils.js for Windows compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
SMLaursen authored Jan 15, 2022
1 parent 1d89d6a commit e09e6ec
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/3-wyvern-registry.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const Web3 = require('web3')
const provider = new Web3.providers.HttpProvider('http://localhost:8545')
const web3 = new Web3(provider)

const {increaseTime,increaseTimePromise,assertIsRejected} = require('./aux')
const {increaseTime,increaseTimePromise,assertIsRejected} = require('./util')

contract('WyvernRegistry',accounts => {
it('is deployed',async () => {
Expand Down
2 changes: 1 addition & 1 deletion test/4-wyvern-exchange-basics.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const WyvernExchange = artifacts.require('WyvernExchange')
const WyvernRegistry = artifacts.require('WyvernRegistry')

const {wrap, hashOrder, hashToSign, ZERO_ADDRESS, ZERO_BYTES32, CHAIN_ID, assertIsRejected} = require('./aux')
const {wrap, hashOrder, hashToSign, ZERO_ADDRESS, ZERO_BYTES32, CHAIN_ID, assertIsRejected} = require('./util')

contract('WyvernExchange',accounts => {
const withExchangeAndRegistry = async () => {
Expand Down
2 changes: 1 addition & 1 deletion test/5-wyvern-exchange-matching.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const Web3 = require('web3')
const provider = new Web3.providers.HttpProvider('http://localhost:8545')
const web3 = new Web3(provider)

const { wrap,hashOrder,ZERO_BYTES32,randomUint,NULL_SIG,assertIsRejected} = require('./aux')
const { wrap,hashOrder,ZERO_BYTES32,randomUint,NULL_SIG,assertIsRejected} = require('./util')

contract('WyvernExchange', (accounts) => {
const deploy = async contracts => Promise.all(contracts.map(contract => contract.deployed()))
Expand Down
2 changes: 1 addition & 1 deletion test/6-wyvern-exchange-matching-erc1155.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const Web3 = require('web3')
const provider = new Web3.providers.HttpProvider('http://localhost:8545')
const web3 = new Web3(provider)

const {wrap,ZERO_BYTES32,CHAIN_ID,NULL_SIG,assertIsRejected} = require('./aux')
const {wrap,ZERO_BYTES32,CHAIN_ID,NULL_SIG,assertIsRejected} = require('./util')

contract('WyvernExchange', (accounts) =>
{
Expand Down
2 changes: 1 addition & 1 deletion test/7-static-market-matching.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const Web3 = require('web3')
const provider = new Web3.providers.HttpProvider('http://localhost:8545')
const web3 = new Web3(provider)

const {wrap,ZERO_BYTES32,CHAIN_ID,assertIsRejected} = require('./aux')
const {wrap,ZERO_BYTES32,CHAIN_ID,assertIsRejected} = require('./util')

contract('WyvernExchange', (accounts) =>
{
Expand Down
File renamed without changes.

0 comments on commit e09e6ec

Please sign in to comment.