Skip to content

Commit

Permalink
tests(imports): update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ArturHoncharuk committed Dec 19, 2024
1 parent 62f87e6 commit b89a388
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ethers } from 'ethers';
import { environment } from '@utils';
import { environment } from '@utils/environment';
import { isNativeWrapped, wrapNativeAddress } from '../wrap-native-address';

const isTestnet = environment === 'testnet';
Expand Down
2 changes: 1 addition & 1 deletion src/utils/__tests__/get-token-name-from-db.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ethers } from 'ethers';
import { getTokenNameFromDatabase } from '@utils';
import { getTokenNameFromDatabase } from '@utils/get-token-name-from-db';

const NATIVE_TOKEN_NAME = 'AirDAO';

Expand Down
2 changes: 1 addition & 1 deletion src/utils/__tests__/tokens.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { wrapTokenIcon } from '@utils';
import { wrapTokenIcon } from '@utils/token';

const MockWithNameWithDB = {
address: '0x24f3811961685888c7a1966cAec194e5444bfC0D',
Expand Down

0 comments on commit b89a388

Please sign in to comment.