Skip to content

Commit

Permalink
fix wrong call
Browse files Browse the repository at this point in the history
  • Loading branch information
albertandrejev committed Aug 1, 2023
1 parent f29071f commit 0b7ece0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/testcases/parallel/tokenfactory.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ describe('Neutron / Tokenfactory', () => {
'test1',
);

const newTokenDenom = cosmosWrapper.cosmosWrapper.getEventAttribute(
const newTokenDenom = cosmosWrapper.getEventAttribute(
(data as any).events,
'create_denom',
'new_token_denom',
Expand Down Expand Up @@ -81,7 +81,7 @@ describe('Neutron / Tokenfactory', () => {
ownerWallet.address.toString(),
denom,
);
const newTokenDenom = cosmosWrapper.cosmosWrapper.getEventAttribute(
const newTokenDenom = cosmosWrapper.getEventAttribute(
(data as any).events,
'create_denom',
'new_token_denom',
Expand Down Expand Up @@ -112,7 +112,7 @@ describe('Neutron / Tokenfactory', () => {
ownerWallet.address.toString(),
denom,
);
const newTokenDenom = cosmosWrapper.cosmosWrapper.getEventAttribute(
const newTokenDenom = cosmosWrapper.getEventAttribute(
(data as any).events,
'create_denom',
'new_token_denom',
Expand Down Expand Up @@ -155,7 +155,7 @@ describe('Neutron / Tokenfactory', () => {
ownerWallet.address.toString(),
denom,
);
const newTokenDenom = cosmosWrapper.cosmosWrapper.getEventAttribute(
const newTokenDenom = cosmosWrapper.getEventAttribute(
(data as any).events,
'create_denom',
'new_token_denom',
Expand Down

0 comments on commit 0b7ece0

Please sign in to comment.