aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2019-02-07 20:35:50 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2019-02-07 20:35:50 +0800
commitb54bafe1c57b100a205630e88c8ead5e5358cc6a (patch)
tree641cd9d14239b35c6ec74e7e246b36b50a4eab86
parent53fe08a348fdf940eb1818327e36ed5637547eb1 (diff)
downloaddexon-0x-contracts-b54bafe1c57b100a205630e88c8ead5e5358cc6a.tar
dexon-0x-contracts-b54bafe1c57b100a205630e88c8ead5e5358cc6a.tar.gz
dexon-0x-contracts-b54bafe1c57b100a205630e88c8ead5e5358cc6a.tar.bz2
dexon-0x-contracts-b54bafe1c57b100a205630e88c8ead5e5358cc6a.tar.lz
dexon-0x-contracts-b54bafe1c57b100a205630e88c8ead5e5358cc6a.tar.xz
dexon-0x-contracts-b54bafe1c57b100a205630e88c8ead5e5358cc6a.tar.zst
dexon-0x-contracts-b54bafe1c57b100a205630e88c8ead5e5358cc6a.zip
Fix linter
-rw-r--r--packages/sol-compiler/test/compiler_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/sol-compiler/test/compiler_test.ts b/packages/sol-compiler/test/compiler_test.ts
index 5cc7e41ce..cae6bce05 100644
--- a/packages/sol-compiler/test/compiler_test.ts
+++ b/packages/sol-compiler/test/compiler_test.ts
@@ -24,7 +24,7 @@ describe('#Compiler', function(): void {
contracts: constants.contracts,
};
it('should create a Compiler with empty opts', async () => {
- const _compiler = new Compiler();
+ const _compiler = new Compiler(); // tslint:disable-line no-unused-variable
});
it('should create an Exchange artifact with the correct unlinked binary', async () => {
compilerOpts.contracts = ['Exchange'];