From 4f56c985ae23f5a3ca7608d04abb1b65c8b05d03 Mon Sep 17 00:00:00 2001 From: Lawrence Forman Date: Thu, 29 Aug 2019 05:32:07 -0400 Subject: [PATCH] `@0x/contracts-staking`: Remove unused tslint directives. --- contracts/staking/test/cobb_douglas.ts | 1 - contracts/staking/test/lib_fixed_math.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/contracts/staking/test/cobb_douglas.ts b/contracts/staking/test/cobb_douglas.ts index ea448a09e4..93e870a584 100644 --- a/contracts/staking/test/cobb_douglas.ts +++ b/contracts/staking/test/cobb_douglas.ts @@ -8,7 +8,6 @@ import { artifacts, TestCobbDouglasContract } from '../src/'; Decimal.set({ precision: 128 }); type Numberish = BigNumber | string | number; -// tslint:disable:no-unnecessary-type-assertion blockchainTests('Cobb-Douglas', env => { const FUZZ_COUNT = 1024; diff --git a/contracts/staking/test/lib_fixed_math.ts b/contracts/staking/test/lib_fixed_math.ts index 42ee411938..75cb271cc4 100644 --- a/contracts/staking/test/lib_fixed_math.ts +++ b/contracts/staking/test/lib_fixed_math.ts @@ -7,7 +7,6 @@ import { artifacts, TestLibFixedMathContract } from '../src/'; Decimal.set({ precision: 128 }); -// tslint:disable:no-unnecessary-type-assertion blockchainTests('LibFixedMath', env => { let testContract: TestLibFixedMathContract;