Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nedsalk committed Dec 16, 2024
1 parent ad36793 commit c280227
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/fuel-gauge/src/abi/abi-gen.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { readFileSync, writeFileSync } from 'fs';
import { readFileSync } from 'fs';
import { AbiGen } from 'fuels';
import { getProgramDetails } from 'fuels/cli-utils';
import { join } from 'path';
Expand Down
4 changes: 2 additions & 2 deletions packages/fuel-gauge/src/recipes.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ describe('recipes', () => {
.proxy_target()
.call();
const firstTarget = await waitForFirstTarget();
expect(firstTarget.value.bits).toEqual(targetAddress);
expect(firstTarget.value?.bits).toEqual(targetAddress);

const anotherProxy = new Src14OwnedProxy(proxyAddress, wallet);
const { waitForResult: waitForAnotherTarget } = await anotherProxy.functions
.proxy_target()
.call();
const anotherTarget = await waitForAnotherTarget();
expect(anotherTarget.value.bits).toEqual(targetAddress);
expect(anotherTarget.value?.bits).toEqual(targetAddress);
});
});

0 comments on commit c280227

Please sign in to comment.