Skip to content

Commit

Permalink
Rename types
Browse files Browse the repository at this point in the history
  • Loading branch information
tsenovilla committed Nov 5, 2024
1 parent 9c3cf11 commit 1ebaae4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions e2e-tests/tests/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export async function customRequest(web3: Web3, method: string, params: any[]) {
});
}

type AssetHubItems = {
type assetHubItems = {
accounts: {
alice: AccountId;
bob: AccountId;
Expand All @@ -85,12 +85,12 @@ type AssetHubItems = {
relayAsset: StagingXcmV3MultiLocation;
};

type LaosItems = {
type laosItems = {
assetHubLocation: XcmVersionedLocation;
relayChainLocation: XcmVersionedLocation;
};

type substratePairs_type = {
type substratePairs = {
alice: KeyringPair;
bob: KeyringPair;
charlie: KeyringPair;
Expand All @@ -99,7 +99,7 @@ type substratePairs_type = {
ferdie: KeyringPair;
};

type ethereumPairs_type = {
type ethereumPairs = {
alith: KeyringPair;
baltathar: KeyringPair;
faith: KeyringPair;
Expand All @@ -113,10 +113,10 @@ type describeContext = {

interface CustomSuiteContext extends Suite {
context: describeContext;
substratePairs: substratePairs_type;
ethereumPairs: ethereumPairs_type;
laosItems: LaosItems;
assetHubItems: AssetHubItems;
substratePairs: substratePairs;
ethereumPairs: ethereumPairs;
laosItems: laosItems;
assetHubItems: assetHubItems;
}

export function describeWithExistingNode(
Expand Down

0 comments on commit 1ebaae4

Please sign in to comment.