From 82afdda256b3cb1f60c1a63a38957f7f97f23dda Mon Sep 17 00:00:00 2001 From: Alex Towle Date: Tue, 10 Sep 2019 18:39:30 -0700 Subject: [PATCH] `@0x:contracts-staking` Fixed compilation errors and ran prettier --- contracts/staking/test/unit_tests/lib_fixed_math.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/staking/test/unit_tests/lib_fixed_math.ts b/contracts/staking/test/unit_tests/lib_fixed_math.ts index 0711f0568e..a9bd912c86 100644 --- a/contracts/staking/test/unit_tests/lib_fixed_math.ts +++ b/contracts/staking/test/unit_tests/lib_fixed_math.ts @@ -3,9 +3,9 @@ import { BigNumber, FixedMathRevertErrors } from '@0x/utils'; import { Decimal } from 'decimal.js'; import * as _ from 'lodash'; -import { artifacts, TestLibFixedMathContract } from '../src/'; +import { artifacts, TestLibFixedMathContract } from '../../src'; -import { assertRoughlyEquals, fromFixed, toDecimal, toFixed } from './utils/number_utils'; +import { assertRoughlyEquals, fromFixed, toDecimal, toFixed } from '../utils/number_utils'; blockchainTests('LibFixedMath', env => { let testContract: TestLibFixedMathContract;