From 26f9cc8e742ca59d007f3e5cc8e8c9a88fcdf149 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Venturo?= Date: Wed, 17 Oct 2018 16:58:49 -0300 Subject: [PATCH] Moved some test files around to better reflect the directory layout. (#1428) (cherry picked from commit d8ab8a00f2cb3c066d17531aaf2403d0a5ba9c88) --- test/{library => cryptography}/ECDSA.test.js | 0 test/{library => cryptography}/MerkleProof.test.js | 0 test/{token/ERC20 => drafts}/TokenVesting.test.js | 8 ++++---- test/{library => math}/Math.test.js | 0 4 files changed, 4 insertions(+), 4 deletions(-) rename test/{library => cryptography}/ECDSA.test.js (100%) rename test/{library => cryptography}/MerkleProof.test.js (100%) rename test/{token/ERC20 => drafts}/TokenVesting.test.js (96%) rename test/{library => math}/Math.test.js (100%) diff --git a/test/library/ECDSA.test.js b/test/cryptography/ECDSA.test.js similarity index 100% rename from test/library/ECDSA.test.js rename to test/cryptography/ECDSA.test.js diff --git a/test/library/MerkleProof.test.js b/test/cryptography/MerkleProof.test.js similarity index 100% rename from test/library/MerkleProof.test.js rename to test/cryptography/MerkleProof.test.js diff --git a/test/token/ERC20/TokenVesting.test.js b/test/drafts/TokenVesting.test.js similarity index 96% rename from test/token/ERC20/TokenVesting.test.js rename to test/drafts/TokenVesting.test.js index 8fd767be1..37864fbca 100644 --- a/test/token/ERC20/TokenVesting.test.js +++ b/test/drafts/TokenVesting.test.js @@ -1,7 +1,7 @@ -const shouldFail = require('../../helpers/shouldFail'); -const time = require('../../helpers/time'); -const { ethGetBlock } = require('../../helpers/web3'); -const { ZERO_ADDRESS } = require('../../helpers/constants'); +const shouldFail = require('../helpers/shouldFail'); +const time = require('../helpers/time'); +const { ethGetBlock } = require('../helpers/web3'); +const { ZERO_ADDRESS } = require('../helpers/constants'); const BigNumber = web3.BigNumber; diff --git a/test/library/Math.test.js b/test/math/Math.test.js similarity index 100% rename from test/library/Math.test.js rename to test/math/Math.test.js