Skip to content

Commit

Permalink
Merge pull request #684 from lukso-network/chore/tests-imports
Browse files Browse the repository at this point in the history
chore: remove direct import from JSON artifacts in LSP16 test suites
  • Loading branch information
CJ42 committed Aug 22, 2023
2 parents ade0b2e + f154559 commit e9e8fe5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tests/LSP16UniversalFactory/LSP16UniversalFactory.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import {
ImplementationTester__factory,
FallbackInitializer,
FallbackInitializer__factory,
LSP6KeyManager__factory,
} from '../../types';

import web3 from 'web3';
Expand All @@ -25,10 +26,10 @@ import type { SignerWithAddress } from '@nomiclabs/hardhat-ethers/signers';

import { provider, AddressOffset } from '../utils/helpers';

import { bytecode as UniversalProfileBytecode } from '../../artifacts/contracts/UniversalProfile.sol/UniversalProfile.json';
import { bytecode as LSP6KeyManagerBytecode } from '../../artifacts/contracts/LSP6KeyManager/LSP6KeyManager.sol/LSP6KeyManager.json';
import { bytecode as ImplementationTesterBytecode } from '../../artifacts/contracts/Mocks/ImplementationTester.sol/ImplementationTester.json';
import { bytecode as FallbackInitializerBytecode } from '../../artifacts/contracts/Mocks/FallbackInitializer.sol/FallbackInitializer.json';
const UniversalProfileBytecode = UniversalProfile__factory.bytecode;
const LSP6KeyManagerBytecode = LSP6KeyManager__factory.bytecode;
const ImplementationTesterBytecode = ImplementationTester__factory.bytecode;
const FallbackInitializerBytecode = FallbackInitializer__factory.bytecode;

type UniversalFactoryTestAccounts = {
random: SignerWithAddress;
Expand Down

0 comments on commit e9e8fe5

Please sign in to comment.